根据正在查看的页面,我想为我的徽标使用不同的图像;主页上的标志更大。我喜欢使用请求规范来测试行为,所以我想做这样的事情:
describe 'Visit "advertentie/1"' do
it 'contains add details' do
add = create(:add_with_photos)
visit add_path add
page.should have_selector( 'img[alt="logo-small"]' ) # CHECK IMAGE ALT
page.should have_content( add.name )
end
end
并且测试再次运行一些haml生成的html:
<div class='logo-wrapper'>
<h1>
<a href="/"><img alt="Logo-big" src="/assets/logo-small.png" />
<br>
<span>UpMarket</span>
</a>
</h1>
</div>
但是这个选择器不起作用。这可能吗,怎么做?