mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 06:02:57 +03:00
66 lines
2.1 KiB
TypeScript
66 lines
2.1 KiB
TypeScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
import type { Env, TestInfo } from 'folio';
|
|
import { PlaywrightEnv } from './browserEnv';
|
|
import * as path from 'path';
|
|
import { ElectronTestArgs } from './electronTest';
|
|
import { ElectronApplication, Page } from '../../index';
|
|
|
|
export class ElectronEnv extends PlaywrightEnv implements Env<ElectronTestArgs> {
|
|
private _electronApp: ElectronApplication | undefined;
|
|
private _windows: Page[] = [];
|
|
|
|
constructor(options: { mode: 'default' | 'driver' | 'service' }) {
|
|
super('chromium', options);
|
|
}
|
|
|
|
private async _newWindow() {
|
|
const [ window ] = await Promise.all([
|
|
this._electronApp!.waitForEvent('window'),
|
|
this._electronApp!.evaluate(electron => {
|
|
const window = new electron.BrowserWindow({ width: 800, height: 600 });
|
|
window.loadURL('data:text/html,<title>Hello World 1</title>');
|
|
})
|
|
]);
|
|
this._windows.push(window);
|
|
return window;
|
|
}
|
|
|
|
async beforeEach(testInfo: TestInfo) {
|
|
const result = await super.beforeEach(testInfo);
|
|
this._electronApp = await result.playwright._electron.launch({
|
|
args: [path.join(__dirname, 'electron-app.js')],
|
|
});
|
|
return {
|
|
...result,
|
|
electronApp: this._electronApp,
|
|
newWindow: this._newWindow.bind(this),
|
|
};
|
|
}
|
|
|
|
async afterEach(testInfo: TestInfo) {
|
|
for (const window of this._windows)
|
|
await window.close();
|
|
this._windows = [];
|
|
if (this._electronApp) {
|
|
await this._electronApp.close();
|
|
this._electronApp = undefined;
|
|
}
|
|
await super.afterEach(testInfo);
|
|
}
|
|
}
|