2

我正在尝试将元素复制到 Tritium 中的给定 CSS 选择器。

Tritum Spec 将 copy_to 的签名列为:

copy_to(Text %xpath)

http://tritium.io/simple-mobile/1.0.224#Node.copy_to(Text%20%25xpath)

我正在尝试做:

copy_to(  CSS_SELECTOR )

例如:

copy_to("#header")

我似乎无法让它工作。

这是氚测试器的 URL:http ://tester.tritium.io/4193cf46a239b4ff440cf1b4c36fb703cd22a5a4

4

1 回答 1

5

不幸的是,由于 CSS 选择器在 Tritium 中的工作方式,这不起作用。

根据规范,CSS 选择器被转换为 XPath 本地搜索,这意味着它们是有范围的。

html() {
  $("/html") {
    $$("#header > img") {
      add_class("logo")
    }
    $$("#content") {
      $("./div[@id='courses']"){
        $$("a") {
          attribute("href", "http://console.moovweb.com/learn/training/getting_started/generate")
        }
        copy_to(css('#header'), "before")
      }
    }
  }
}

在您的示例中,您的copy_to函数在 的范围内$("./div[@id='courses']"),因此它不会div#header在其中找到。

您必须使用这样的 XPath 选择器:copy_to("/html/body/div[@id='header']","before")

见这里:http ://tester.tritium.io/5f0ae313a4f43038ee4adeb49b81236bfbc5f097

于 2013-06-25T20:49:48.900 回答