gaf-mobile
Version:
GAF mobile Web site
13 lines (11 loc) • 324 B
JavaScript
function HomePage() {
// Get a reference to page elements we want to interact with
this.loginButton = element(by.buttonText('Login'));
this.snapDrawToggle = element(by.id('open-left'));
// Navigate to profile page URL
this.get = function () {
browser.get('/');
};
}
module.exports = HomePage;
;