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>
29 lines
No EOL
1.6 KiB
Text
29 lines
No EOL
1.6 KiB
Text
"use strict";
|
|
/**
|
|
* @license
|
|
* Copyright 2020 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports._connectToCdpBrowser = _connectToCdpBrowser;
|
|
const util_js_1 = require("../common/util.js");
|
|
const incremental_id_generator_js_1 = require("../util/incremental-id-generator.js");
|
|
const Browser_js_1 = require("./Browser.js");
|
|
const Connection_js_1 = require("./Connection.js");
|
|
/**
|
|
* Users should never call this directly; it's called when calling
|
|
* `puppeteer.connect` with `protocol: 'cdp'`.
|
|
*
|
|
* @internal
|
|
*/
|
|
async function _connectToCdpBrowser(connectionTransport, url, options) {
|
|
const { acceptInsecureCerts = false, networkEnabled = true, defaultViewport = util_js_1.DEFAULT_VIEWPORT, downloadBehavior, targetFilter, _isPageTarget: isPageTarget, slowMo = 0, protocolTimeout, handleDevToolsAsPage, idGenerator = (0, incremental_id_generator_js_1.createIncrementalIdGenerator)(), } = options;
|
|
const connection = new Connection_js_1.Connection(url, connectionTransport, slowMo, protocolTimeout,
|
|
/* rawErrors */ false, idGenerator);
|
|
const { browserContextIds } = await connection.send('Target.getBrowserContexts');
|
|
const browser = await Browser_js_1.CdpBrowser._create(connection, browserContextIds, acceptInsecureCerts, defaultViewport, downloadBehavior, undefined, () => {
|
|
return connection.send('Browser.close').catch(util_js_1.debugError);
|
|
}, targetFilter, isPageTarget, undefined, networkEnabled, handleDevToolsAsPage);
|
|
return browser;
|
|
}
|
|
//# sourceMappingURL=BrowserConnector.js.map |