Sha256: 52afc8f4ae1eb831af825600b1e032309166f86ba8a06a302680d099061ec949
Contents?: true
Size: 431 Bytes
Versions: 18
Compression:
Stored size: 431 Bytes
Contents
steps_for :search_with_scenario_outline do def initialize *params puts Capybara.current_driver super end step "I am on wikipedia.com" do visit('/') end step "I enter word :word" do |word| fill_in "searchInput", :with => word end step "I click submit button" do find(".formBtn", match: :first).click end step "I should see :text" do |text| expect(page).to have_content text end end
Version data entries
18 entries across 18 versions & 1 rubygems