/** * Copyright 2017 Google Inc. All rights reserved. * * 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. */ var __runInitializers = (this && this.__runInitializers) || function (thisArg, initializers, value) { var useValue = arguments.length > 2; for (var i = 0; i < initializers.length; i++) { value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg); } return useValue ? value : void 0; }; var __esDecorate = (this && this.__esDecorate) || function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) { function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; } var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value"; var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null; var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {}); var _, done = false; for (var i = decorators.length - 1; i >= 0; i--) { var context = {}; for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p]; for (var p in contextIn.access) context.access[p] = contextIn.access[p]; context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); }; var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context); if (kind === "accessor") { if (result === void 0) continue; if (result === null || typeof result !== "object") throw new TypeError("Object expected"); if (_ = accept(result.get)) descriptor.get = _; if (_ = accept(result.set)) descriptor.set = _; if (_ = accept(result.init)) initializers.unshift(_); } else if (_ = accept(result)) { if (kind === "field") initializers.unshift(_); else descriptor[key] = _; } } if (target) Object.defineProperty(target, contextIn.name, descriptor); done = true; }; import { Frame, FrameEvent, throwIfDetached } from '../api/Frame.js'; import { setPageContent } from '../common/util.js'; import { assert } from '../util/assert.js'; import { Deferred } from '../util/Deferred.js'; import { disposeSymbol } from '../util/disposable.js'; import { isErrorLike } from '../util/ErrorLike.js'; import { IsolatedWorld } from './IsolatedWorld.js'; import { MAIN_WORLD, PUPPETEER_WORLD } from './IsolatedWorlds.js'; import { LifecycleWatcher, } from './LifecycleWatcher.js'; /** * @internal */ let CdpFrame = (() => { let _classSuper = Frame; let _instanceExtraInitializers = []; let _goto_decorators; let _waitForNavigation_decorators; let _setContent_decorators; let _waitForDevicePrompt_decorators; return class CdpFrame extends _classSuper { static { const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0; __esDecorate(this, null, _goto_decorators, { kind: "method", name: "goto", static: false, private: false, access: { has: obj => "goto" in obj, get: obj => obj.goto }, metadata: _metadata }, null, _instanceExtraInitializers); __esDecorate(this, null, _waitForNavigation_decorators, { kind: "method", name: "waitForNavigation", static: false, private: false, access: { has: obj => "waitForNavigation" in obj, get: obj => obj.waitForNavigation }, metadata: _metadata }, null, _instanceExtraInitializers); __esDecorate(this, null, _setContent_decorators, { kind: "method", name: "setContent", static: false, private: false, access: { has: obj => "setContent" in obj, get: obj => obj.setContent }, metadata: _metadata }, null, _instanceExtraInitializers); __esDecorate(this, null, _waitForDevicePrompt_decorators, { kind: "method", name: "waitForDevicePrompt", static: false, private: false, access: { has: obj => "waitForDevicePrompt" in obj, get: obj => obj.waitForDevicePrompt }, metadata: _metadata }, null, _instanceExtraInitializers); if (_metadata) Object.defineProperty(this, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata }); } #url = (__runInitializers(this, _instanceExtraInitializers), ''); #detached = false; #client; _frameManager; _id; _loaderId = ''; _lifecycleEvents = new Set(); _parentId; constructor(frameManager, frameId, parentFrameId, client) { super(); this._frameManager = frameManager; this.#url = ''; this._id = frameId; this._parentId = parentFrameId; this.#detached = false; this._loaderId = ''; this.updateClient(client); this.on(FrameEvent.FrameSwappedByActivation, () => { // Emulate loading process for swapped frames. this._onLoadingStarted(); this._onLoadingStopped(); }); } /** * This is used internally in DevTools. * * @internal */ _client() { return this.#client; } /** * Updates the frame ID with the new ID. This happens when the main frame is * replaced by a different frame. */ updateId(id) { this._id = id; } updateClient(client, keepWorlds = false) { this.#client = client; if (!keepWorlds) { this.worlds = { [MAIN_WORLD]: new IsolatedWorld(this, this._frameManager.timeoutSettings), [PUPPETEER_WORLD]: new IsolatedWorld(this, this._frameManager.timeoutSettings), }; } else { this.worlds[MAIN_WORLD].frameUpdated(); this.worlds[PUPPETEER_WORLD].frameUpdated(); } } page() { return this._frameManager.page(); } isOOPFrame() { return this.#client !== this._frameManager.client; } async goto(url, options = {}) { const { referer = this._frameManager.networkManager.extraHTTPHeaders()['referer'], referrerPolicy = this._frameManager.networkManager.extraHTTPHeaders()['referer-policy'], waitUntil = ['load'], timeout = this._frameManager.timeoutSettings.navigationTimeout(), } = options; let ensureNewDocumentNavigation = false; const watcher = new LifecycleWatcher(this._frameManager.networkManager, this, waitUntil, timeout); let error = await Deferred.race([ navigate(this.#client, url, referer, referrerPolicy, this._id), watcher.terminationPromise(), ]); if (!error) { error = await Deferred.race([ watcher.terminationPromise(), ensureNewDocumentNavigation ? watcher.newDocumentNavigationPromise() : watcher.sameDocumentNavigationPromise(), ]); } try { if (error) { throw error; } return await watcher.navigationResponse(); } finally { watcher.dispose(); } async function navigate(client, url, referrer, referrerPolicy, frameId) { try { const response = await client.send('Page.navigate', { url, referrer, frameId, referrerPolicy, }); ensureNewDocumentNavigation = !!response.loaderId; if (response.errorText === 'net::ERR_HTTP_RESPONSE_CODE_FAILURE') { return null; } return response.errorText ? new Error(`${response.errorText} at ${url}`) : null; } catch (error) { if (isErrorLike(error)) { return error; } throw error; } } } async waitForNavigation(options = {}) { const { waitUntil = ['load'], timeout = this._frameManager.timeoutSettings.navigationTimeout(), } = options; const watcher = new LifecycleWatcher(this._frameManager.networkManager, this, waitUntil, timeout); const error = await Deferred.race([ watcher.terminationPromise(), watcher.sameDocumentNavigationPromise(), watcher.newDocumentNavigationPromise(), ]); try { if (error) { throw error; } return await watcher.navigationResponse(); } finally { watcher.dispose(); } } get client() { return this.#client; } mainRealm() { return this.worlds[MAIN_WORLD]; } isolatedRealm() { return this.worlds[PUPPETEER_WORLD]; } async setContent(html, options = {}) { const { waitUntil = ['load'], timeout = this._frameManager.timeoutSettings.navigationTimeout(), } = options; await setPageContent(this.isolatedRealm(), html); const watcher = new LifecycleWatcher(this._frameManager.networkManager, this, waitUntil, timeout); const error = await Deferred.race([ watcher.terminationPromise(), watcher.lifecyclePromise(), ]); watcher.dispose(); if (error) { throw error; } } url() { return this.#url; } parentFrame() { return this._frameManager._frameTree.parentFrame(this._id) || null; } childFrames() { return this._frameManager._frameTree.childFrames(this._id); } #deviceRequestPromptManager() { if (this.isOOPFrame()) { return this._frameManager._deviceRequestPromptManager(this.#client); } const parentFrame = this.parentFrame(); assert(parentFrame !== null); return parentFrame.#deviceRequestPromptManager(); } async waitForDevicePrompt(options = {}) { return await this.#deviceRequestPromptManager().waitForDevicePrompt(options); } _navigated(framePayload) { this._name = framePayload.name; this.#url = `${framePayload.url}${framePayload.urlFragment || ''}`; } _navigatedWithinDocument(url) { this.#url = url; } _onLifecycleEvent(loaderId, name) { if (name === 'init') { this._loaderId = loaderId; this._lifecycleEvents.clear(); } this._lifecycleEvents.add(name); } _onLoadingStopped() { this._lifecycleEvents.add('DOMContentLoaded'); this._lifecycleEvents.add('load'); } _onLoadingStarted() { this._hasStartedLoading = true; } get detached() { return this.#detached; } [(_goto_decorators = [throwIfDetached], _waitForNavigation_decorators = [throwIfDetached], _setContent_decorators = [throwIfDetached], _waitForDevicePrompt_decorators = [throwIfDetached], disposeSymbol)]() { if (this.#detached) { return; } this.#detached = true; this.worlds[MAIN_WORLD][disposeSymbol](); this.worlds[PUPPETEER_WORLD][disposeSymbol](); } }; })(); export { CdpFrame }; //# sourceMappingURL=Frame.js.map