mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
3cd21cb6d4
https://github.com/microsoft/playwright-python/issues/1843 Almost reverts https://github.com/microsoft/playwright/pull/11826 since this is not used by VSCode anymore and was legacy.
55 lines
1.8 KiB
JavaScript
55 lines
1.8 KiB
JavaScript
/**
|
|
* Copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
// @ts-check
|
|
|
|
const pw = require.resolve('playwright');
|
|
const oop = require.resolve('playwright-core/lib/outofprocess', { paths: [pw] });
|
|
const { start } = require(oop);
|
|
|
|
(async () => {
|
|
console.log('launching driver')
|
|
const { playwright, stop } = await start();
|
|
console.log('launched driver')
|
|
try {
|
|
const browser = await playwright.chromium.launch({ handleSIGINT: false });
|
|
const context = await browser.newContext();
|
|
const page = await context.newPage();
|
|
// let things settle down
|
|
await page.waitForTimeout(100);
|
|
// send SIGINT to driver
|
|
process.kill(playwright.driverProcess.pid, 'SIGINT');
|
|
// wait and see if driver exits
|
|
await page.waitForTimeout(100);
|
|
console.log(`closing gracefully`)
|
|
await page.close();
|
|
console.log('closed page');
|
|
await context.close();
|
|
console.log('closed context');
|
|
await browser.close();
|
|
console.log('closed browser');
|
|
await stop();
|
|
console.log('stopped driver');
|
|
} catch (e) {
|
|
console.error(`Should be able to launch from ${process.cwd()}`);
|
|
console.error(e);
|
|
process.exit(1);
|
|
}
|
|
console.log(`SUCCESS`);
|
|
})().catch(err => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|