Skip to content

Instantly share code, notes, and snippets.

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

  • Save jsdevel/2916d0498003706f3f8d to your computer and use it in GitHub Desktop.

Select an option

Save jsdevel/2916d0498003706f3f8d to your computer and use it in GitHub Desktop.
module.exports = function SearchWidget() {
var SEARCH_WIDGET_SUBMIT_BUTTON_SELECTOR = '#searchWidgetSubmitButtonSelector';
this.clickSearchWidgetButton = function() {
this.driver.findElement(By.id(SEARCH_WIDGET_SUBMIT_BUTTON_SELECTOR)).click();
return this;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment