1c44d1d0f9
* added /config endpoint, use fewer globals * fixed integration tests
28 lines
539 B
JavaScript
28 lines
539 B
JavaScript
/* global browser window */
|
|
class Page {
|
|
constructor(path) {
|
|
this.path = path;
|
|
}
|
|
|
|
open() {
|
|
browser.url(this.path);
|
|
this.waitForPageToLoad();
|
|
}
|
|
|
|
/**
|
|
* @function waitForPageToLoad
|
|
* @returns {Object} An object representing the page.
|
|
* @throws ElementNotFound
|
|
*/
|
|
waitForPageToLoad() {
|
|
browser.waitUntil(function() {
|
|
return browser.execute(function() {
|
|
return typeof window.app !== 'undefined';
|
|
});
|
|
}, 3000);
|
|
browser.pause(100);
|
|
return this;
|
|
}
|
|
}
|
|
module.exports = Page;
|