Skip to content

Instantly share code, notes, and snippets.

@bkone
Last active August 29, 2015 14:04
Show Gist options
  • Save bkone/60569d4a08b43b5693c2 to your computer and use it in GitHub Desktop.
Save bkone/60569d4a08b43b5693c2 to your computer and use it in GitHub Desktop.
Given(/^I am on the Ticket home page$/) do
@browser.goto("http://dev.sencha.com/extjs/5.0.0/examples/ticket-app/index.html")
end
Given(/^I log in the application$/) do
Watir::Wait.until { @browser.text.include? 'Login - Ticket App' }
@browser.text_field(:name,"password").set "blah"
@browser.span(:text,"Login").click
end
Given(/^I wait for the "(.*?)" text to be displayed$/) do |arg1|
Watir::Wait.until { @browser.text.include? arg1 }
end
Then(/^I must see the text "(.*?)" displayed$/) do |arg1|
assert_includes(@browser.text,arg1)
end
Given(/^I enter "(.*?)" in the test field named "(.*?)"$/) do |text, text_field_name|
@browser.text_field(:name,text_field_name).set text
end
Given(/^I wait for the "(.*?)" div to close$/) do |div_text|
@browser.div(:text,div_text).wait_while_present
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment