send/test/integration/pages/desktop/page.js
2018-10-03 11:22:30 -07:00

15 lines
278 B
JavaScript

export default class Page {
constructor() {}
open(path) {
browser.url(path);
this.waitForPageToLoad();
}
/**
* @function waitForPageToLoad
* @returns {Object} An object representing the page.
* @throws ElementNotFound
*/
waitForPageToLoad() {}
}