wiki.techinc.nl/tests/selenium/docs/Stack/pageobjects/page.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
216 B
JavaScript
Raw Normal View History

// Example code for Selenium/Explanation/Stack
// https://www.mediawiki.org/wiki/Selenium/Explanation/Stack
'use strict';
class Page {
async open( path ) {
await browser.url( path );
}
}
module.exports = Page;