mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
6 lines
197 B
JavaScript
6 lines
197 B
JavaScript
(async() => {
|
|
const [, , playwrightRoot, options] = process.argv;
|
|
const browser = await require(playwrightRoot).launch(JSON.parse(options));
|
|
console.log(browser.chromium.wsEndpoint());
|
|
})();
|