Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
68 lines
1.6 KiB
Text
68 lines
1.6 KiB
Text
/**
|
|
* @license
|
|
* Copyright 2020 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type {ConnectionTransport} from '../common/ConnectionTransport.js';
|
|
import type {ConnectOptions} from '../common/ConnectOptions.js';
|
|
import {debugError, DEFAULT_VIEWPORT} from '../common/util.js';
|
|
import {createIncrementalIdGenerator} from '../util/incremental-id-generator.js';
|
|
|
|
import {CdpBrowser} from './Browser.js';
|
|
import {Connection} from './Connection.js';
|
|
|
|
/**
|
|
* Users should never call this directly; it's called when calling
|
|
* `puppeteer.connect` with `protocol: 'cdp'`.
|
|
*
|
|
* @internal
|
|
*/
|
|
export async function _connectToCdpBrowser(
|
|
connectionTransport: ConnectionTransport,
|
|
url: string,
|
|
options: ConnectOptions,
|
|
): Promise<CdpBrowser> {
|
|
const {
|
|
acceptInsecureCerts = false,
|
|
networkEnabled = true,
|
|
defaultViewport = DEFAULT_VIEWPORT,
|
|
downloadBehavior,
|
|
targetFilter,
|
|
_isPageTarget: isPageTarget,
|
|
slowMo = 0,
|
|
protocolTimeout,
|
|
handleDevToolsAsPage,
|
|
idGenerator = createIncrementalIdGenerator(),
|
|
} = options;
|
|
|
|
const connection = new Connection(
|
|
url,
|
|
connectionTransport,
|
|
slowMo,
|
|
protocolTimeout,
|
|
/* rawErrors */ false,
|
|
idGenerator,
|
|
);
|
|
|
|
const {browserContextIds} = await connection.send(
|
|
'Target.getBrowserContexts',
|
|
);
|
|
const browser = await CdpBrowser._create(
|
|
connection,
|
|
browserContextIds,
|
|
acceptInsecureCerts,
|
|
defaultViewport,
|
|
downloadBehavior,
|
|
undefined,
|
|
() => {
|
|
return connection.send('Browser.close').catch(debugError);
|
|
},
|
|
targetFilter,
|
|
isPageTarget,
|
|
undefined,
|
|
networkEnabled,
|
|
handleDevToolsAsPage,
|
|
);
|
|
return browser;
|
|
}
|