Sha256: 8a0168edb7e767822df45a4b48f02099efbedad4aa8ae142d45bbf480d548e70
Contents?: true
Size: 978 Bytes
Versions: 2
Compression:
Stored size: 978 Bytes
Contents
# Full Watir API: http://wtr.rubyforge.org/rdoc/ # Full RSpec API: http://rspec.rubyforge.org/ Given 'I am on the Google search page' do @browser.goto 'http://www.google.com/' end When(/I search for "(.*)"/) do |query| @browser.text_field(:name, 'q').set(query) @browser.button(:name, 'btnG').click end Then(/I should see/) do |text| @browser.text.should =~ /#{text}/m end # To avoid step definitions that are tightly coupled to your user interface, # consider creating classes for your pages - such as this: # http://github.com/cucumber/cucumber/tree/v0.1.15/examples/watir/features/step_definitons/search_steps.rb # # You may keep the page classes along your steps, or even better, put them in # separate files, e.g. support/pages/google_search.rb # # This technique is called "Page Objects", and you can read more about it here: # http://github.com/marekj/watirloo/tree/master # We're not using this technique here, since we want to illustrate the # basics only.
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cucumber-3.0.1 | examples/watir/features/step_definitions/search_steps.rb |
cucumber-3.0.0 | examples/watir/features/step_definitions/search_steps.rb |