Sha256: 93c9d14c5f0439b4c3e897a421e9629438a4fa10e27eeedb960cdcdbd3fe9b63
Contents?: true
Size: 610 Bytes
Versions: 32
Compression:
Stored size: 610 Bytes
Contents
Then /^I should see the css file "([^"]*)"$/ do |path| step %{I should see the css file "#{path}" of media "screen"} end Then /^I should see the css file "([^"]*)" of media "([^"]*)"$/ do |path, media| expect(page).to have_xpath("//link[contains(@href, '#{path}') and contains(@media, '#{media}')]", visible: false) end Then /^I should see the js file "([^"]*)"$/ do |path| expect(page).to have_xpath("//script[contains(@src, '#{path}')]", visible: false) end Then /^I should see the favicon "([^"]*)"$/ do |path| expect(page).to have_xpath("//link[contains(@href, '#{path}')]", visible: false) end
Version data entries
32 entries across 32 versions & 5 rubygems