Skip to content

Instantly share code, notes, and snippets.

@mattc41190
Created June 2, 2016 19:11
Show Gist options
  • Save mattc41190/a69ecbb1f274ddc39df9d16e5bbc1418 to your computer and use it in GitHub Desktop.
Save mattc41190/a69ecbb1f274ddc39df9d16e5bbc1418 to your computer and use it in GitHub Desktop.
var Page = require('../base_page')
var SearchView = Object.create(Page, {
/**
* define selector strings
*/
stabSearchboxSelector : {
value : '.stab-searchbox'
},
searchfieldInputSelector : {
value : '#searchKeywords'
},
/**
* define elements
*/
searchField: { get: function () { return browser.element(this.stabSearchboxSelector + ' ' + this.searchfieldInputSelector); } }
});
module.exports = SearchView;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment