本文介绍了使用 RSpec 和 Capybara 检查图像和网站图标的存在的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有使用 rspec 和水豚检查图像和网站图标是否存在的好方法?
Is there a good way to check on existence of images and favicons using rspec and capybara?
我可以检查网站图标和图像的 DOM,但我希望也能够检查这些图像是否加载.rspec 和水豚可以做到这一点吗?
I can check on the DOM of favicons and images, but I want to be able to check that those images load as well. Is this possible with rspec and capybara?
推荐答案
describe "check images and favicon" do
before { visit "url/to/check")
it "should have the images" do
page.should have_css('img', text: "image1.jpg")
it "should have the favicon" do
page.should have_xpath("/html/head/link[@href='favicon.ico']"
end
end
这篇关于使用 RSpec 和 Capybara 检查图像和网站图标的存在的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!