mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00

This changes the root object from RemoteBrowser to Playwright, similar to local driver connection. This way, any remote connection gets a Playwright object. This also starts reusing PlaywrightServer class, and introduces `cli run-server` hidden command that runs ws server on the specified port. Previous structure: ``` RemoteBrowser - browser (using ConnectedBrowser for remote-specific behavior) - selectors (special instance for this remote connection) ``` New structure: ``` Playwright - ... - selectors (special instance for this remote connection) - preLaunchedBrowser (using ConnectedBrowser for remote-specific behavior) ```
50 lines
2.3 KiB
TypeScript
50 lines
2.3 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 { DispatcherConnection } from './dispatchers/dispatcher';
|
|
import { createPlaywright } from './server/playwright';
|
|
import type { Playwright as PlaywrightAPI } from './client/playwright';
|
|
import { PlaywrightDispatcher } from './dispatchers/playwrightDispatcher';
|
|
import { Connection } from './client/connection';
|
|
import { BrowserServerLauncherImpl } from './browserServerImpl';
|
|
|
|
function setupInProcess(): PlaywrightAPI {
|
|
const playwright = createPlaywright();
|
|
|
|
const clientConnection = new Connection();
|
|
const dispatcherConnection = new DispatcherConnection();
|
|
|
|
// Dispatch synchronously at first.
|
|
dispatcherConnection.onmessage = message => clientConnection.dispatch(message);
|
|
clientConnection.onmessage = message => dispatcherConnection.dispatch(message);
|
|
|
|
// Initialize Playwright channel.
|
|
new PlaywrightDispatcher(dispatcherConnection.rootDispatcher(), playwright);
|
|
const playwrightAPI = clientConnection.getObjectWithKnownName('Playwright') as PlaywrightAPI;
|
|
playwrightAPI.chromium._serverLauncher = new BrowserServerLauncherImpl(playwright, playwright.chromium);
|
|
playwrightAPI.firefox._serverLauncher = new BrowserServerLauncherImpl(playwright, playwright.firefox);
|
|
playwrightAPI.webkit._serverLauncher = new BrowserServerLauncherImpl(playwright, playwright.webkit);
|
|
|
|
// Switch to async dispatch after we got Playwright object.
|
|
dispatcherConnection.onmessage = message => setImmediate(() => clientConnection.dispatch(message));
|
|
clientConnection.onmessage = message => setImmediate(() => dispatcherConnection.dispatch(message));
|
|
|
|
(playwrightAPI as any)._toImpl = (x: any) => dispatcherConnection._dispatchers.get(x._guid)!._object;
|
|
return playwrightAPI;
|
|
}
|
|
|
|
module.exports = setupInProcess();
|