Skip to content

Instantly share code, notes, and snippets.

@whitneyimura
Last active August 29, 2015 13:55
Show Gist options
  • Save whitneyimura/8692673 to your computer and use it in GitHub Desktop.
Save whitneyimura/8692673 to your computer and use it in GitHub Desktop.
Flexible step definitions
require File.join(File.dirname(__FILE__), '..', '..', 'lib', 'pages', 'BasePage')
And /^I click "([^"]*)" on the home page$/ do |selector|
@page = BasePage.new(@test_env)
@page.click_el(selector)
end
And /^I see the "([^"]*)" on the home page$/ do |selector|
@page = BasePage.new(@test_env)
@page.verify_el(selector)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment