Created
October 31, 2013 20:57
-
-
Save pedrolopesme/7257035 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: UTF-8 | |
Given(/^I am on Blog do Pedro's Home Page$/) do | |
visit_page HomePage | |
end | |
When(/^I input a term into search text field$/) do | |
on_page HomePage do |page| | |
page.input_search = "Tradução do artigo sobre PageObjects" | |
end | |
end | |
Then(/^I should submit search form$/) do | |
on_page HomePage do |page| | |
page.search | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment