Skip to content

Instantly share code, notes, and snippets.

@whitneyimura
Created January 29, 2014 17:28
Show Gist options
  • Save whitneyimura/8692791 to your computer and use it in GitHub Desktop.
Save whitneyimura/8692791 to your computer and use it in GitHub Desktop.
Flexible Method
class BasePage.rb
def initialize
@browser = test_env[:browser]
@home = test_env[:url]
end
def verify_el(css)
@browser.find_element(:css, css)
end
def click_el(css)
@browser.find_element(:css, css).click
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment