Geb - 如何使用hasNot功能?

时间:2017-08-24 14:21:34

标签: selenium automated-tests geb

我想找到每个导航器都有类“不可引用”但没有类“隐藏”。 我写这个

$(".non-clicable").hasNot(".hide")

但它不起作用(找到匹配“.non-clicable”的每个导航器并且hasNot就像被忽略。我也尝试调试并发现: enter image description here

我已经使用了

($(".non-clicable") - $(".non-clicable").filter(".hide"))

它的工作正常,但看起来并不优雅。 是否有一些错误或我以错误的方式使用该功能?

1 个答案:

答案 0 :(得分:1)

你可以尝试:

IDLE_TIME

或者:

$(".non-clicable", class: notContains(".hide")) 

还有工作:

$(".non-clicable").not(".hide")