mirror of
https://github.com/timvisee/send.git
synced 2025-10-03 09:49:14 +02:00
15 lines
278 B
JavaScript
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() {}
|
|
}
|