drop.chapril.org-firefoxsend/test/integration/pages/desktop/page.js

18 lines
307 B
JavaScript
Raw Normal View History

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