playwright/test/fixtures/closeme.js

6 lines
236 B
JavaScript
Raw Normal View History

2019-11-19 05:18:28 +03:00
(async() => {
const [, , playwrightRoot, product, options] = process.argv;
const browserApp = await require(playwrightRoot)[product.toLowerCase()].launchBrowserApp(JSON.parse(options));
console.log(browserApp.wsEndpoint());
2019-11-19 05:18:28 +03:00
})();