2021-10-02 02:06:13 +02: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.
|
|
|
|
|
*/
|
|
|
|
|
|
2022-10-25 02:23:11 +02:00
|
|
|
import { AndroidServerLauncherImpl } from './androidServerImpl';
|
2025-02-07 22:54:01 +01:00
|
|
|
import { BrowserServerLauncherImpl } from './browserServerImpl';
|
|
|
|
|
import { DispatcherConnection, PlaywrightDispatcher, RootDispatcher, createPlaywright } from './server';
|
2025-02-13 04:27:24 +01:00
|
|
|
import { nodePlatform } from './server/utils/nodePlatform';
|
2025-02-20 00:27:00 +01:00
|
|
|
import { Connection } from './client/connection';
|
|
|
|
|
import { setPlatformForSelectors } from './client/selectors';
|
2025-02-07 22:54:01 +01:00
|
|
|
|
|
|
|
|
import type { Playwright as PlaywrightAPI } from './client/playwright';
|
2024-08-13 21:47:02 +02:00
|
|
|
import type { Language } from './utils';
|
2025-02-13 04:27:24 +01:00
|
|
|
|
2025-02-15 00:10:50 +01:00
|
|
|
export function createInProcessPlaywright(): PlaywrightAPI {
|
2023-06-02 02:54:43 +02:00
|
|
|
const playwright = createPlaywright({ sdkLanguage: (process.env.PW_LANG_NAME as Language | undefined) || 'javascript' });
|
2025-02-20 00:27:00 +01:00
|
|
|
setPlatformForSelectors(nodePlatform);
|
|
|
|
|
const clientConnection = new Connection(nodePlatform);
|
2023-12-07 02:58:19 +01:00
|
|
|
clientConnection.useRawBuffers();
|
2022-07-05 17:58:34 +02:00
|
|
|
const dispatcherConnection = new DispatcherConnection(true /* local */);
|
2021-10-02 02:06:13 +02:00
|
|
|
|
|
|
|
|
// Dispatch synchronously at first.
|
|
|
|
|
dispatcherConnection.onmessage = message => clientConnection.dispatch(message);
|
|
|
|
|
clientConnection.onmessage = message => dispatcherConnection.dispatch(message);
|
|
|
|
|
|
2022-08-25 20:58:41 +02:00
|
|
|
const rootScope = new RootDispatcher(dispatcherConnection);
|
2021-10-02 02:06:13 +02:00
|
|
|
|
|
|
|
|
// Initialize Playwright channel.
|
|
|
|
|
new PlaywrightDispatcher(rootScope, playwright);
|
|
|
|
|
const playwrightAPI = clientConnection.getObjectWithKnownName('Playwright') as PlaywrightAPI;
|
|
|
|
|
playwrightAPI.chromium._serverLauncher = new BrowserServerLauncherImpl('chromium');
|
|
|
|
|
playwrightAPI.firefox._serverLauncher = new BrowserServerLauncherImpl('firefox');
|
|
|
|
|
playwrightAPI.webkit._serverLauncher = new BrowserServerLauncherImpl('webkit');
|
2022-10-25 02:23:11 +02:00
|
|
|
playwrightAPI._android._serverLauncher = new AndroidServerLauncherImpl();
|
2025-01-03 21:37:28 +01:00
|
|
|
playwrightAPI._bidiChromium._serverLauncher = new BrowserServerLauncherImpl('bidiChromium');
|
|
|
|
|
playwrightAPI._bidiFirefox._serverLauncher = new BrowserServerLauncherImpl('bidiFirefox');
|
2021-10-02 02:06:13 +02:00
|
|
|
|
|
|
|
|
// Switch to async dispatch after we got Playwright object.
|
|
|
|
|
dispatcherConnection.onmessage = message => setImmediate(() => clientConnection.dispatch(message));
|
|
|
|
|
clientConnection.onmessage = message => setImmediate(() => dispatcherConnection.dispatch(message));
|
|
|
|
|
|
2022-07-01 18:58:07 +02:00
|
|
|
clientConnection.toImpl = (x: any) => x ? dispatcherConnection._dispatchers.get(x._guid)!._object : dispatcherConnection._dispatchers.get('');
|
2022-04-04 20:50:46 +02:00
|
|
|
(playwrightAPI as any)._toImpl = clientConnection.toImpl;
|
2021-10-02 02:06:13 +02:00
|
|
|
return playwrightAPI;
|
|
|
|
|
}
|