Sha256: 8947f4c9042d6d9d8c0166109baefd50d31ea1255bc5070d02cc65b14d9140d5
Contents?: true
Size: 392 Bytes
Versions: 18
Compression:
Stored size: 392 Bytes
Contents
require 'steps/common_steps' steps_for :search_with_drivers do include CommonSteps 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 end
Version data entries
18 entries across 18 versions & 1 rubygems