我的代码中有一个非常简单的DIV:
<div class='articles'>
<h2>More articles...</h2>
<ul>
<li><a href="/articles/where-to-take-your-driving-test-in-washington-state">Where to Take Your ...</a></li>
<li><a href="/articles/crucial-topics-that-are-covered-in-the-dmv-handbook" >Crucial Topics that ...</a></li>
</ul>
</div>
我正在尝试使用水豚来测试两个LI元素,但没有任何作用,我相信因为我在一个班级中搜索而且水豚有这个问题。
我尝试了所有这些变体:
page.should have_css('.articles li', :count => "2")
或
page.first(:css, '.articles').should have_css('li', :count => 2)
我有很多实例,我需要能够在css类中搜索而不是ID,所以我很好奇如何让它工作