Skip to content

Instantly share code, notes, and snippets.

@richdownie
Created November 15, 2018 13:31
Show Gist options
  • Save richdownie/e30756b27e9e5fa6dd8d797d5fd1614e to your computer and use it in GitHub Desktop.
Save richdownie/e30756b27e9e5fa6dd8d797d5fd1614e to your computer and use it in GitHub Desktop.
class Navigation
def widgets_index
@browser.get('https://fullstackautomationwithruby.com/widgets')
end
def installs
@browser.get('https://fullstackautomationwithruby.com/installs')
end
def curator
@browser.get('https://fullstackautomationwithruby.com/about')
end
def sign_in
@browser.get('https://fullstackautomationwithruby.com/users/sign_in')
end
def sign_up
@browser.get('https://fullstackautomationwithruby.com/users/sign_up')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment