fox-send/test/integration/pages/desktop/page.js

22 lines
357 B
JavaScript
Raw Normal View History

2018-10-04 00:39:39 +00:00
/* global browser */
class Page {
2018-10-31 18:31:17 +00:00
constructor(path) {
this.path = path;
}
2018-10-02 20:15:02 +00:00
2018-10-31 18:31:17 +00:00
open() {
browser.url(this.path);
2018-10-02 20:15:02 +00:00
this.waitForPageToLoad();
}
/**
* @function waitForPageToLoad
* @returns {Object} An object representing the page.
* @throws ElementNotFound
*/
2018-10-31 18:31:17 +00:00
waitForPageToLoad() {
return this;
}
2018-10-02 20:15:02 +00:00
}
2018-10-04 00:39:39 +00:00
module.exports = Page;