playwright/test/fixtures/closeme.js

6 lines
236 B
JavaScript

(async() => {
const [, , playwrightRoot, product, options] = process.argv;
const browserApp = await require(playwrightRoot)[product.toLowerCase()].launchBrowserApp(JSON.parse(options));
console.log(browserApp.wsEndpoint());
})();