24
1
Fork 0
drop.chapril.org-firefoxsend/test/integration/pages/desktop/page.js

28 lines
544 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.appState !== 'undefined';
});
}, 3000);
browser.pause(100);
return this;
}
}
module.exports = Page;