Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Galen javascript API 编写功能测试。我必须选择 ul 的第一个 li。
this.menu = $page("Menu Bar", { menuItem: "ul.section li:first-child div" });
似乎 css 选择器第一个孩子在这里是错误的。
我可以使用 xpath 做同样的事情:xpath: //ul[@class='section']//li[1]//div
xpath: //ul[@class='section']//li[1]//div
但我想使用 CSS 选择器。请帮忙
在 github 中提出问题。这似乎是一个盖伦问题。
https://github.com/galenframework/galen/issues/423
将在 2.3 版本中修复