Skip to content

Instantly share code, notes, and snippets.

@jsdevel
Created April 20, 2015 06:23
Show Gist options
  • Select an option

  • Save jsdevel/3f3257675b917cde0230 to your computer and use it in GitHub Desktop.

Select an option

Save jsdevel/3f3257675b917cde0230 to your computer and use it in GitHub Desktop.
module.exports = function Page(driver, endpoint) {
this.driver = driver;
this.get = function() {
driver.get(endpoint + this.getPagePath());
return this;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment