mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 14:11:50 +03:00
6 lines
236 B
JavaScript
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());
|
|
})();
|