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

16 lines
278 B
JavaScript
Raw Normal View History

2018-10-02 20:15:02 +00:00
export default class Page {
constructor() {}
open(path) {
browser.url(path);
this.waitForPageToLoad();
}
/**
* @function waitForPageToLoad
* @returns {Object} An object representing the page.
* @throws ElementNotFound
*/
waitForPageToLoad() {}
}