Added webdriverio integration tests
This commit is contained in:
parent
bd02b7db8e
commit
23d629b80b
40 changed files with 10815 additions and 4163 deletions
15
test/integration/pages/desktop/page.js
Normal file
15
test/integration/pages/desktop/page.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
export default class Page {
|
||||
constructor() {}
|
||||
|
||||
open(path) {
|
||||
browser.url(path);
|
||||
this.waitForPageToLoad();
|
||||
}
|
||||
|
||||
/**
|
||||
* @function waitForPageToLoad
|
||||
* @returns {Object} An object representing the page.
|
||||
* @throws ElementNotFound
|
||||
*/
|
||||
waitForPageToLoad() {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue