我想使用page.should have_no_content来检查页面是否没有向用户显示标签,这里是HTML中的内容:
@H_404_2@<li id="account_input" style="display: none;">
<label for="account_name">My Account</label>
...
</li>
因此,当我使用page.should have_no_content(“我的帐户”)时,它返回false而不是true.
解决方法
你可以使用这个声明
@H_404_2@find('#account_input').should_not be_visible