Skip to content

Commit

Permalink
fix(electron): after v28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Dec 5, 2023
1 parent d437e26 commit b0a6db5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class CRExecutionContext implements js.ExecutionContextDelegate {
}
}

function rewriteError(error: Error): Protocol.Runtime.evaluateReturnValue {
export function rewriteError(error: Error): Protocol.Runtime.evaluateReturnValue {
if (error.message.includes('Object reference chain is too long'))
return { result: { type: 'undefined' } };
if (error.message.includes('Object couldn\'t be returned by value'))
Expand Down
25 changes: 18 additions & 7 deletions packages/playwright-core/src/server/electron/electron.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ import { CRBrowser } from '../chromium/crBrowser';
import type { CRSession } from '../chromium/crConnection';
import { CRConnection } from '../chromium/crConnection';
import type { CRPage } from '../chromium/crPage';
import { CRExecutionContext } from '../chromium/crExecutionContext';
import { CRExecutionContext, rewriteError } from '../chromium/crExecutionContext';
import { getExceptionMessage } from '../chromium/crProtocolHelper';
import * as js from '../javascript';
import type { Page } from '../page';
import { TimeoutSettings } from '../../common/timeoutSettings';
Expand Down Expand Up @@ -54,7 +55,7 @@ export class ElectronApplication extends SdkObject {
private _nodeConnection: CRConnection;
private _nodeSession: CRSession;
private _nodeExecutionContext: js.ExecutionContext | undefined;
_nodeElectronHandlePromise: Promise<js.JSHandle<any>>;
_nodeElectronHandlePromise: Promise<js.JSHandle<typeof import('electron')>>;
readonly _timeoutSettings = new TimeoutSettings();
private _process: childProcess.ChildProcess;

Expand All @@ -69,11 +70,21 @@ export class ElectronApplication extends SdkObject {
this._nodeConnection = nodeConnection;
this._nodeSession = nodeConnection.rootSession;
this._nodeElectronHandlePromise = new Promise(f => {
this._nodeSession.on('Runtime.executionContextCreated', async (event: any) => {
this._nodeSession.on('Runtime.executionContextCreated', async (event: import('../chromium/protocol').Protocol.Runtime.executionContextCreatedPayload) => {
if (event.context.auxData && event.context.auxData.isDefault) {
this._nodeExecutionContext = new js.ExecutionContext(this, new CRExecutionContext(this._nodeSession, event.context), 'electron');
const source = `process.mainModule.require('electron')`;
f(await this._nodeExecutionContext.rawEvaluateHandle(source).then(objectId => new js.JSHandle(this._nodeExecutionContext!, 'object', 'ElectronModule', objectId)));
const crExecutionContext = new CRExecutionContext(this._nodeSession, event.context);
this._nodeExecutionContext = new js.ExecutionContext(this, crExecutionContext, 'electron');
f(await this._nodeExecutionContext._raceAgainstContextDestroyed<string>((async () => {
const { exceptionDetails, result: remoteObject } = await crExecutionContext._client.send('Runtime.evaluate', {
expression: `require('electron')`,
contextId: event.context.id,
// Needed after Electron 28 to get access to require: https://github.com/microsoft/playwright/issues/28048
includeCommandLineAPI: true,
}).catch(rewriteError);
if (exceptionDetails)
throw new js.JavaScriptErrorInEvaluate(getExceptionMessage(exceptionDetails));
return remoteObject.objectId!;
})()).then(objectId => new js.JSHandle(this._nodeExecutionContext!, 'object', 'ElectronModule', objectId)));
}
});
});
Expand Down Expand Up @@ -112,7 +123,7 @@ export class ElectronApplication extends SdkObject {
const electronHandle = await this._nodeElectronHandlePromise;
return await electronHandle.evaluateHandle(({ BrowserWindow, webContents }, targetId) => {
const wc = webContents.fromDevToolsTargetId(targetId);
return BrowserWindow.fromWebContents(wc);
return BrowserWindow.fromWebContents(wc!)!;
}, targetId);
}
}
Expand Down

0 comments on commit b0a6db5

Please sign in to comment.