ruby-on-rails – 使用RSpec和Capybara检查图像和图标的存在

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 使用RSpec和Capybara检查图像和图标的存在前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有一种很好的方法来检查使用rspec和水豚的图像和favicons的存在?

我可以查看favicon和图像的DOM,但我希望能够检查这些图像是否也加载.这对rspec和水豚有可能吗?

解决方法

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
原文链接:https://www.f2er.com/ruby/266505.html

猜你在找的Ruby相关文章