playwright/src/client/electron.ts

139 lines
6.0 KiB
TypeScript
Raw Normal View History

2020-07-13 21:46:59 -07:00
/**
* 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 { BrowserWindow } from 'electron';
2021-02-01 11:43:26 -08:00
import * as structs from '../../types/structs';
import * as api from '../../types/types';
import * as channels from '../protocol/channels';
2021-02-01 11:43:26 -08:00
import { TimeoutSettings } from '../utils/timeoutSettings';
import { headersObjectToArray } from '../utils/utils';
2020-07-13 21:46:59 -07:00
import { BrowserContext } from './browserContext';
import { ChannelOwner } from './channelOwner';
2021-02-01 11:43:26 -08:00
import { envObjectToArray } from './clientHelper';
import { Events } from './events';
import { JSHandle, parseResult, serializeArgument } from './jsHandle';
2020-07-13 21:46:59 -07:00
import { Page } from './page';
import { Env, WaitForEventOptions, Headers } from './types';
2020-07-13 21:46:59 -07:00
import { Waiter } from './waiter';
type ElectronOptions = Omit<channels.ElectronLaunchOptions, 'env'|'extraHTTPHeaders'> & {
env?: Env,
extraHTTPHeaders?: Headers,
};
type ElectronAppType = typeof import('electron');
2021-02-01 11:43:26 -08:00
export class Electron extends ChannelOwner<channels.ElectronChannel, channels.ElectronInitializer> implements api.Electron {
static from(electron: channels.ElectronChannel): Electron {
2020-07-13 21:46:59 -07:00
return (electron as any)._object;
}
constructor(parent: ChannelOwner, type: string, guid: string, initializer: channels.ElectronInitializer) {
super(parent, type, guid, initializer);
2020-07-13 21:46:59 -07:00
}
2021-02-01 11:43:26 -08:00
async launch(options: ElectronOptions = {}): Promise<ElectronApplication> {
return this._wrapApiCall('electron.launch', async (channel: channels.ElectronChannel) => {
const params: channels.ElectronLaunchParams = {
sdkLanguage: 'javascript',
...options,
extraHTTPHeaders: options.extraHTTPHeaders && headersObjectToArray(options.extraHTTPHeaders),
2021-02-01 11:43:26 -08:00
env: envObjectToArray(options.env ? options.env : process.env),
};
return ElectronApplication.from((await channel.launch(params)).electronApplication);
2021-02-01 11:43:26 -08:00
});
2020-07-13 21:46:59 -07:00
}
}
2021-02-01 11:43:26 -08:00
export class ElectronApplication extends ChannelOwner<channels.ElectronApplicationChannel, channels.ElectronApplicationInitializer> implements api.ElectronApplication {
private _context: BrowserContext;
2020-07-13 21:46:59 -07:00
private _windows = new Set<Page>();
private _timeoutSettings = new TimeoutSettings();
static from(electronApplication: channels.ElectronApplicationChannel): ElectronApplication {
2020-07-13 21:46:59 -07:00
return (electronApplication as any)._object;
}
constructor(parent: ChannelOwner, type: string, guid: string, initializer: channels.ElectronApplicationInitializer) {
super(parent, type, guid, initializer);
this._context = BrowserContext.from(initializer.context);
for (const page of this._context._pages)
this._onPage(page);
this._context.on(Events.BrowserContext.Page, page => this._onPage(page));
this._channel.on('close', () => this.emit(Events.ElectronApplication.Close));
2020-07-13 21:46:59 -07:00
}
_onPage(page: Page) {
this._windows.add(page);
this.emit(Events.ElectronApplication.Window, page);
page.once(Events.Page.Close, () => this._windows.delete(page));
}
2021-02-01 11:43:26 -08:00
windows(): Page[] {
// TODO: add ElectronPage class inherting from Page.
2021-02-01 11:43:26 -08:00
return [...this._windows];
2020-07-13 21:46:59 -07:00
}
2021-02-01 11:43:26 -08:00
async firstWindow(): Promise<Page> {
return this._wrapApiCall('electronApplication.firstWindow', async (channel: channels.ElectronApplicationChannel) => {
if (this._windows.size)
return this._windows.values().next().value;
return this.waitForEvent('window');
});
2020-07-13 21:46:59 -07:00
}
2021-04-02 09:47:14 +08:00
context(): BrowserContext {
return this._context! as BrowserContext;
2020-07-13 21:46:59 -07:00
}
async close() {
await this._channel.close();
}
async waitForEvent(event: string, optionsOrPredicate: WaitForEventOptions = {}): Promise<any> {
const timeout = this._timeoutSettings.timeout(typeof optionsOrPredicate === 'function' ? {} : optionsOrPredicate);
const predicate = typeof optionsOrPredicate === 'function' ? optionsOrPredicate : optionsOrPredicate.predicate;
const waiter = Waiter.createForEvent(this, 'electronApplication', event);
2020-07-21 23:48:21 -07:00
waiter.rejectOnTimeout(timeout, `Timeout while waiting for event "${event}"`);
if (event !== Events.ElectronApplication.Close)
waiter.rejectOnEvent(this, Events.ElectronApplication.Close, new Error('Electron application closed'));
2020-07-13 21:46:59 -07:00
const result = await waiter.waitForEvent(this, event, predicate as any);
waiter.dispose();
return result;
}
async browserWindow(page: Page): Promise<JSHandle<BrowserWindow>> {
return this._wrapApiCall('electronApplication.browserWindow', async (channel: channels.ElectronApplicationChannel) => {
const result = await channel.browserWindow({ page: page._channel });
return JSHandle.from(result.handle);
});
}
async evaluate<R, Arg>(pageFunction: structs.PageFunctionOn<ElectronAppType, Arg, R>, arg: Arg): Promise<R> {
return this._wrapApiCall('electronApplication.evaluate', async (channel: channels.ElectronApplicationChannel) => {
const result = await channel.evaluateExpression({ expression: String(pageFunction), isFunction: typeof pageFunction === 'function', arg: serializeArgument(arg) });
return parseResult(result.value);
});
2020-07-13 21:46:59 -07:00
}
async evaluateHandle<R, Arg>(pageFunction: structs.PageFunctionOn<ElectronAppType, Arg, R>, arg: Arg): Promise<structs.SmartHandle<R>> {
return this._wrapApiCall('electronApplication.evaluateHandle', async (channel: channels.ElectronApplicationChannel) => {
const result = await channel.evaluateExpressionHandle({ expression: String(pageFunction), isFunction: typeof pageFunction === 'function', arg: serializeArgument(arg) });
return JSHandle.from(result.handle) as any as structs.SmartHandle<R>;
});
2020-07-13 21:46:59 -07:00
}
}