如何使用 Rspechave_selector
来验证 DOM 元素没有某些 CSS 类?
我正在尝试为此使用 CSS 语法,但显然 Nokogiri 不支持:not()
选择器。
例如:
it "should not add any class to other inputs" do
@buffer.output.should have_selector(
'form input#monster_battle_cry:not(.integer, .decimal, .date, .phone, .zip)'
)
end
这失败了#Nokogiri::CSS::SyntaxError: # unexpected ':not('