aboutsummaryrefslogtreecommitdiffstats
path: root/tests/selenium/docs/Stack/pageobjects/page.js
blob: 836482a0c5c32f7e2b9534f47455ec9ba0a56bdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// 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;