135 lines
5.1 KiB
JavaScript
135 lines
5.1 KiB
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.ElectronApplication = exports.Electron = void 0;
|
||
|
var _timeoutSettings = require("../common/timeoutSettings");
|
||
|
var _browserContext = require("./browserContext");
|
||
|
var _channelOwner = require("./channelOwner");
|
||
|
var _clientHelper = require("./clientHelper");
|
||
|
var _events = require("./events");
|
||
|
var _jsHandle = require("./jsHandle");
|
||
|
var _consoleMessage = require("./consoleMessage");
|
||
|
var _waiter = require("./waiter");
|
||
|
var _errors = require("./errors");
|
||
|
let _Symbol$asyncDispose;
|
||
|
/**
|
||
|
* 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.
|
||
|
*/
|
||
|
class Electron extends _channelOwner.ChannelOwner {
|
||
|
static from(electron) {
|
||
|
return electron._object;
|
||
|
}
|
||
|
constructor(parent, type, guid, initializer) {
|
||
|
super(parent, type, guid, initializer);
|
||
|
}
|
||
|
async launch(options = {}) {
|
||
|
const params = {
|
||
|
...(await (0, _browserContext.prepareBrowserContextParams)(options)),
|
||
|
env: (0, _clientHelper.envObjectToArray)(options.env ? options.env : process.env),
|
||
|
tracesDir: options.tracesDir
|
||
|
};
|
||
|
const app = ElectronApplication.from((await this._channel.launch(params)).electronApplication);
|
||
|
app._context._setOptions(params, options);
|
||
|
return app;
|
||
|
}
|
||
|
}
|
||
|
exports.Electron = Electron;
|
||
|
_Symbol$asyncDispose = Symbol.asyncDispose;
|
||
|
class ElectronApplication extends _channelOwner.ChannelOwner {
|
||
|
static from(electronApplication) {
|
||
|
return electronApplication._object;
|
||
|
}
|
||
|
constructor(parent, type, guid, initializer) {
|
||
|
super(parent, type, guid, initializer);
|
||
|
this._context = void 0;
|
||
|
this._windows = new Set();
|
||
|
this._timeoutSettings = new _timeoutSettings.TimeoutSettings();
|
||
|
this._context = _browserContext.BrowserContext.from(initializer.context);
|
||
|
for (const page of this._context._pages) this._onPage(page);
|
||
|
this._context.on(_events.Events.BrowserContext.Page, page => this._onPage(page));
|
||
|
this._channel.on('close', () => {
|
||
|
this.emit(_events.Events.ElectronApplication.Close);
|
||
|
});
|
||
|
this._channel.on('console', event => this.emit(_events.Events.ElectronApplication.Console, new _consoleMessage.ConsoleMessage(event)));
|
||
|
this._setEventToSubscriptionMapping(new Map([[_events.Events.ElectronApplication.Console, 'console']]));
|
||
|
}
|
||
|
process() {
|
||
|
return this._toImpl().process();
|
||
|
}
|
||
|
_onPage(page) {
|
||
|
this._windows.add(page);
|
||
|
this.emit(_events.Events.ElectronApplication.Window, page);
|
||
|
page.once(_events.Events.Page.Close, () => this._windows.delete(page));
|
||
|
}
|
||
|
windows() {
|
||
|
// TODO: add ElectronPage class inheriting from Page.
|
||
|
return [...this._windows];
|
||
|
}
|
||
|
async firstWindow(options) {
|
||
|
if (this._windows.size) return this._windows.values().next().value;
|
||
|
return await this.waitForEvent('window', options);
|
||
|
}
|
||
|
context() {
|
||
|
return this._context;
|
||
|
}
|
||
|
async [_Symbol$asyncDispose]() {
|
||
|
await this.close();
|
||
|
}
|
||
|
async close() {
|
||
|
try {
|
||
|
await this._context.close();
|
||
|
} catch (e) {
|
||
|
if ((0, _errors.isTargetClosedError)(e)) return;
|
||
|
throw e;
|
||
|
}
|
||
|
}
|
||
|
async waitForEvent(event, optionsOrPredicate = {}) {
|
||
|
return await this._wrapApiCall(async () => {
|
||
|
const timeout = this._timeoutSettings.timeout(typeof optionsOrPredicate === 'function' ? {} : optionsOrPredicate);
|
||
|
const predicate = typeof optionsOrPredicate === 'function' ? optionsOrPredicate : optionsOrPredicate.predicate;
|
||
|
const waiter = _waiter.Waiter.createForEvent(this, event);
|
||
|
waiter.rejectOnTimeout(timeout, `Timeout ${timeout}ms exceeded while waiting for event "${event}"`);
|
||
|
if (event !== _events.Events.ElectronApplication.Close) waiter.rejectOnEvent(this, _events.Events.ElectronApplication.Close, () => new _errors.TargetClosedError());
|
||
|
const result = await waiter.waitForEvent(this, event, predicate);
|
||
|
waiter.dispose();
|
||
|
return result;
|
||
|
});
|
||
|
}
|
||
|
async browserWindow(page) {
|
||
|
const result = await this._channel.browserWindow({
|
||
|
page: page._channel
|
||
|
});
|
||
|
return _jsHandle.JSHandle.from(result.handle);
|
||
|
}
|
||
|
async evaluate(pageFunction, arg) {
|
||
|
const result = await this._channel.evaluateExpression({
|
||
|
expression: String(pageFunction),
|
||
|
isFunction: typeof pageFunction === 'function',
|
||
|
arg: (0, _jsHandle.serializeArgument)(arg)
|
||
|
});
|
||
|
return (0, _jsHandle.parseResult)(result.value);
|
||
|
}
|
||
|
async evaluateHandle(pageFunction, arg) {
|
||
|
const result = await this._channel.evaluateExpressionHandle({
|
||
|
expression: String(pageFunction),
|
||
|
isFunction: typeof pageFunction === 'function',
|
||
|
arg: (0, _jsHandle.serializeArgument)(arg)
|
||
|
});
|
||
|
return _jsHandle.JSHandle.from(result.handle);
|
||
|
}
|
||
|
}
|
||
|
exports.ElectronApplication = ElectronApplication;
|