Geb - 如何使用 hasNot 函数?

Geb - how to use hasNot function?

我想找到每个有 class "non-clicable" 但没有 class "hide" 的导航器。 我写这个

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

但它不起作用(找到匹配“.non-clicable”和 hasNot 的每个导航器都被忽略了。我也尝试调试并发现了这个:

我已经用过

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

它工作正常,但看起来不够优雅。 是否存在错误或我使用该功能的方式不正确?

你可以试试:

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

或者:

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

同时工作:

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