我想确定存在input
id="foo"
字段:
<input id="foo" ... />
我还想确保在某些条件下,input
字段id="bar"
答案 0 :(得分:0)
要确定存在特定的input
字段,请使用:
assert has_xpath?("//input[@id='foo']")
要确定特定的input
字段是否存在不,请使用以下方法之一:
assert has_no_xpath?("//input[@id='bar']")
refute has_xpath?("//input[@id='bar']")