19 lines
296 B
JavaScript
19 lines
296 B
JavaScript
|
var wdio = require('webdriverio');
|
||
|
|
||
|
var options = {
|
||
|
desiredCapabilities: {
|
||
|
browserName: "firefox"
|
||
|
}
|
||
|
};
|
||
|
var client = wdio.remote(options).init();
|
||
|
|
||
|
function Page() {}
|
||
|
|
||
|
Page.prototype.open = function(path) {
|
||
|
client.url(path);
|
||
|
return client;
|
||
|
};
|
||
|
|
||
|
module.exports = new Page();
|
||
|
|