2017-06-17 21:27:51 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
import * as EventEmitter from 'events';
|
2020-05-07 10:54:55 +00:00
|
|
|
import { helper, assert, debugError } from './helper';
|
|
|
|
import { Events } from './Events';
|
|
|
|
import { ExecutionContext, EVALUATION_SCRIPT_URL } from './ExecutionContext';
|
|
|
|
import { LifecycleWatcher, PuppeteerLifeCycleEvent } from './LifecycleWatcher';
|
|
|
|
import { DOMWorld, WaitForSelectorOptions } from './DOMWorld';
|
|
|
|
import { NetworkManager, Response } from './NetworkManager';
|
|
|
|
import { TimeoutSettings } from './TimeoutSettings';
|
|
|
|
import { CDPSession } from './Connection';
|
|
|
|
import { JSHandle, ElementHandle } from './JSHandle';
|
|
|
|
import { MouseButtonInput } from './Input';
|
|
|
|
import { Page } from './Page';
|
2017-10-12 08:26:44 +00:00
|
|
|
|
2019-01-22 22:55:33 +00:00
|
|
|
const UTILITY_WORLD_NAME = '__puppeteer_utility_world__';
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
export class FrameManager extends EventEmitter {
|
|
|
|
_client: CDPSession;
|
2020-05-05 12:53:22 +00:00
|
|
|
_page: Page;
|
2020-04-30 10:15:27 +00:00
|
|
|
_networkManager: NetworkManager;
|
2020-04-29 11:28:16 +00:00
|
|
|
_timeoutSettings: TimeoutSettings;
|
|
|
|
_frames = new Map<string, Frame>();
|
|
|
|
_contextIdToContext = new Map<number, ExecutionContext>();
|
|
|
|
_isolatedWorlds = new Set<string>();
|
|
|
|
_mainFrame: Frame;
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
constructor(
|
|
|
|
client: CDPSession,
|
|
|
|
page: Page,
|
|
|
|
ignoreHTTPSErrors: boolean,
|
|
|
|
timeoutSettings: TimeoutSettings
|
|
|
|
) {
|
2017-06-21 20:51:06 +00:00
|
|
|
super();
|
|
|
|
this._client = client;
|
2017-10-07 07:28:24 +00:00
|
|
|
this._page = page;
|
2019-09-05 01:11:58 +00:00
|
|
|
this._networkManager = new NetworkManager(client, ignoreHTTPSErrors, this);
|
2019-01-29 01:16:12 +00:00
|
|
|
this._timeoutSettings = timeoutSettings;
|
2020-05-07 10:54:55 +00:00
|
|
|
this._client.on('Page.frameAttached', (event) =>
|
|
|
|
this._onFrameAttached(event.frameId, event.parentFrameId)
|
|
|
|
);
|
|
|
|
this._client.on('Page.frameNavigated', (event) =>
|
|
|
|
this._onFrameNavigated(event.frame)
|
|
|
|
);
|
|
|
|
this._client.on('Page.navigatedWithinDocument', (event) =>
|
|
|
|
this._onFrameNavigatedWithinDocument(event.frameId, event.url)
|
|
|
|
);
|
|
|
|
this._client.on('Page.frameDetached', (event) =>
|
|
|
|
this._onFrameDetached(event.frameId)
|
|
|
|
);
|
|
|
|
this._client.on('Page.frameStoppedLoading', (event) =>
|
|
|
|
this._onFrameStoppedLoading(event.frameId)
|
|
|
|
);
|
|
|
|
this._client.on('Runtime.executionContextCreated', (event) =>
|
|
|
|
this._onExecutionContextCreated(event.context)
|
|
|
|
);
|
|
|
|
this._client.on('Runtime.executionContextDestroyed', (event) =>
|
|
|
|
this._onExecutionContextDestroyed(event.executionContextId)
|
|
|
|
);
|
|
|
|
this._client.on('Runtime.executionContextsCleared', () =>
|
|
|
|
this._onExecutionContextsCleared()
|
|
|
|
);
|
|
|
|
this._client.on('Page.lifecycleEvent', (event) =>
|
|
|
|
this._onLifecycleEvent(event)
|
|
|
|
);
|
2019-04-10 04:42:42 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
async initialize(): Promise<void> {
|
2020-05-07 10:54:55 +00:00
|
|
|
const result = await Promise.all<
|
|
|
|
Protocol.Page.enableReturnValue,
|
|
|
|
Protocol.Page.getFrameTreeReturnValue
|
|
|
|
>([
|
2019-04-10 04:42:42 +00:00
|
|
|
this._client.send('Page.enable'),
|
|
|
|
this._client.send('Page.getFrameTree'),
|
|
|
|
]);
|
2020-03-31 16:42:32 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
const { frameTree } = result[1];
|
2017-10-18 02:14:57 +00:00
|
|
|
this._handleFrameTree(frameTree);
|
2019-04-10 04:42:42 +00:00
|
|
|
await Promise.all([
|
2020-05-07 10:54:55 +00:00
|
|
|
this._client.send('Page.setLifecycleEventsEnabled', { enabled: true }),
|
|
|
|
this._client
|
|
|
|
.send('Runtime.enable', {})
|
|
|
|
.then(() => this._ensureIsolatedWorld(UTILITY_WORLD_NAME)),
|
2019-04-10 04:42:42 +00:00
|
|
|
this._networkManager.initialize(),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2020-04-30 10:15:27 +00:00
|
|
|
networkManager(): NetworkManager {
|
2019-04-10 04:42:42 +00:00
|
|
|
return this._networkManager;
|
2017-10-18 02:14:57 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async navigateFrame(
|
|
|
|
frame: Frame,
|
|
|
|
url: string,
|
|
|
|
options: {
|
|
|
|
referer?: string;
|
|
|
|
timeout?: number;
|
|
|
|
waitUntil?: PuppeteerLifeCycleEvent | PuppeteerLifeCycleEvent[];
|
|
|
|
} = {}
|
|
|
|
): Promise<Response | null> {
|
2018-11-20 23:32:46 +00:00
|
|
|
assertNoLegacyNavigationOptions(options);
|
2018-11-12 20:59:21 +00:00
|
|
|
const {
|
|
|
|
referer = this._networkManager.extraHTTPHeaders()['referer'],
|
2018-11-20 23:32:46 +00:00
|
|
|
waitUntil = ['load'],
|
2019-01-29 01:16:12 +00:00
|
|
|
timeout = this._timeoutSettings.navigationTimeout(),
|
2018-11-12 20:59:21 +00:00
|
|
|
} = options;
|
2018-09-19 20:12:28 +00:00
|
|
|
|
2018-11-20 23:32:46 +00:00
|
|
|
const watcher = new LifecycleWatcher(this, frame, waitUntil, timeout);
|
2018-09-19 20:12:28 +00:00
|
|
|
let ensureNewDocumentNavigation = false;
|
|
|
|
let error = await Promise.race([
|
2018-11-12 20:59:21 +00:00
|
|
|
navigate(this._client, url, referer, frame._id),
|
2018-09-19 20:12:28 +00:00
|
|
|
watcher.timeoutOrTerminationPromise(),
|
|
|
|
]);
|
|
|
|
if (!error) {
|
|
|
|
error = await Promise.race([
|
|
|
|
watcher.timeoutOrTerminationPromise(),
|
2020-05-07 10:54:55 +00:00
|
|
|
ensureNewDocumentNavigation
|
|
|
|
? watcher.newDocumentNavigationPromise()
|
|
|
|
: watcher.sameDocumentNavigationPromise(),
|
2018-09-19 20:12:28 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
watcher.dispose();
|
2020-05-07 10:54:55 +00:00
|
|
|
if (error) throw error;
|
2018-09-19 20:12:28 +00:00
|
|
|
return watcher.navigationResponse();
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async function navigate(
|
|
|
|
client: CDPSession,
|
|
|
|
url: string,
|
|
|
|
referrer: string,
|
|
|
|
frameId: string
|
|
|
|
): Promise<Error | null> {
|
2018-09-19 20:12:28 +00:00
|
|
|
try {
|
2020-05-07 10:54:55 +00:00
|
|
|
const response = await client.send('Page.navigate', {
|
|
|
|
url,
|
|
|
|
referrer,
|
|
|
|
frameId,
|
|
|
|
});
|
2018-09-19 20:12:28 +00:00
|
|
|
ensureNewDocumentNavigation = !!response.loaderId;
|
2020-05-07 10:54:55 +00:00
|
|
|
return response.errorText
|
|
|
|
? new Error(`${response.errorText} at ${url}`)
|
|
|
|
: null;
|
2018-09-19 20:12:28 +00:00
|
|
|
} catch (error) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async waitForFrameNavigation(
|
|
|
|
frame: Frame,
|
|
|
|
options: {
|
|
|
|
timeout?: number;
|
|
|
|
waitUntil?: PuppeteerLifeCycleEvent | PuppeteerLifeCycleEvent[];
|
|
|
|
} = {}
|
|
|
|
): Promise<Response | null> {
|
2018-11-20 23:32:46 +00:00
|
|
|
assertNoLegacyNavigationOptions(options);
|
2018-11-12 20:59:21 +00:00
|
|
|
const {
|
2018-11-20 23:32:46 +00:00
|
|
|
waitUntil = ['load'],
|
2019-01-29 01:16:12 +00:00
|
|
|
timeout = this._timeoutSettings.navigationTimeout(),
|
2018-11-12 20:59:21 +00:00
|
|
|
} = options;
|
2018-11-20 23:32:46 +00:00
|
|
|
const watcher = new LifecycleWatcher(this, frame, waitUntil, timeout);
|
2018-09-19 20:12:28 +00:00
|
|
|
const error = await Promise.race([
|
|
|
|
watcher.timeoutOrTerminationPromise(),
|
|
|
|
watcher.sameDocumentNavigationPromise(),
|
2020-05-07 10:54:55 +00:00
|
|
|
watcher.newDocumentNavigationPromise(),
|
2018-09-19 20:12:28 +00:00
|
|
|
]);
|
|
|
|
watcher.dispose();
|
2020-05-07 10:54:55 +00:00
|
|
|
if (error) throw error;
|
2018-09-19 20:12:28 +00:00
|
|
|
return watcher.navigationResponse();
|
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_onLifecycleEvent(event: Protocol.Page.lifecycleEventPayload): void {
|
2017-11-10 23:33:14 +00:00
|
|
|
const frame = this._frames.get(event.frameId);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (!frame) return;
|
2017-11-10 23:33:14 +00:00
|
|
|
frame._onLifecycleEvent(event.loaderId, event.name);
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.FrameManager.LifecycleEvent, frame);
|
2017-11-10 23:33:14 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_onFrameStoppedLoading(frameId: string): void {
|
2018-04-10 22:59:41 +00:00
|
|
|
const frame = this._frames.get(frameId);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (!frame) return;
|
2018-04-10 22:59:41 +00:00
|
|
|
frame._onLoadingStopped();
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.FrameManager.LifecycleEvent, frame);
|
2018-04-10 22:59:41 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_handleFrameTree(frameTree: Protocol.Page.FrameTree): void {
|
2017-10-18 02:14:57 +00:00
|
|
|
if (frameTree.frame.parentId)
|
|
|
|
this._onFrameAttached(frameTree.frame.id, frameTree.frame.parentId);
|
|
|
|
this._onFrameNavigated(frameTree.frame);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (!frameTree.childFrames) return;
|
2017-10-18 02:14:57 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
for (const child of frameTree.childFrames) this._handleFrameTree(child);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 12:53:22 +00:00
|
|
|
page(): Page {
|
2018-08-16 23:16:27 +00:00
|
|
|
return this._page;
|
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
mainFrame(): Frame {
|
2017-06-21 20:51:06 +00:00
|
|
|
return this._mainFrame;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
frames(): Frame[] {
|
2017-06-21 20:51:06 +00:00
|
|
|
return Array.from(this._frames.values());
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
frame(frameId: string): Frame | null {
|
2018-01-10 02:47:21 +00:00
|
|
|
return this._frames.get(frameId) || null;
|
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_onFrameAttached(frameId: string, parentFrameId?: string): void {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._frames.has(frameId)) return;
|
2018-05-31 23:53:51 +00:00
|
|
|
assert(parentFrameId);
|
2017-08-21 23:39:04 +00:00
|
|
|
const parentFrame = this._frames.get(parentFrameId);
|
2018-08-16 23:16:27 +00:00
|
|
|
const frame = new Frame(this, this._client, parentFrame, frameId);
|
2017-06-21 20:51:06 +00:00
|
|
|
this._frames.set(frame._id, frame);
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.FrameManager.FrameAttached, frame);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_onFrameNavigated(framePayload: Protocol.Page.Frame): void {
|
2017-07-28 23:52:38 +00:00
|
|
|
const isMainFrame = !framePayload.parentId;
|
2020-05-07 10:54:55 +00:00
|
|
|
let frame = isMainFrame
|
|
|
|
? this._mainFrame
|
|
|
|
: this._frames.get(framePayload.id);
|
|
|
|
assert(
|
|
|
|
isMainFrame || frame,
|
|
|
|
'We either navigate top level or have old version of the navigated frame'
|
|
|
|
);
|
2017-07-28 23:52:38 +00:00
|
|
|
|
|
|
|
// Detach all child frames first.
|
|
|
|
if (frame) {
|
2017-08-21 23:39:04 +00:00
|
|
|
for (const child of frame.childFrames())
|
2017-07-28 23:52:38 +00:00
|
|
|
this._removeFramesRecursively(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update or create main frame.
|
|
|
|
if (isMainFrame) {
|
|
|
|
if (frame) {
|
|
|
|
// Update frame id to retain frame identity on cross-process navigation.
|
2017-10-10 05:31:40 +00:00
|
|
|
this._frames.delete(frame._id);
|
2017-07-28 23:52:38 +00:00
|
|
|
frame._id = framePayload.id;
|
|
|
|
} else {
|
|
|
|
// Initial main frame navigation.
|
2018-08-16 23:16:27 +00:00
|
|
|
frame = new Frame(this, this._client, null, framePayload.id);
|
2017-07-28 23:52:38 +00:00
|
|
|
}
|
|
|
|
this._frames.set(framePayload.id, frame);
|
|
|
|
this._mainFrame = frame;
|
2017-06-21 20:36:04 +00:00
|
|
|
}
|
2017-07-28 23:52:38 +00:00
|
|
|
|
|
|
|
// Update frame payload.
|
|
|
|
frame._navigated(framePayload);
|
|
|
|
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.FrameManager.FrameNavigated, frame);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
async _ensureIsolatedWorld(name: string): Promise<void> {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._isolatedWorlds.has(name)) return;
|
2019-01-22 22:55:33 +00:00
|
|
|
this._isolatedWorlds.add(name);
|
|
|
|
await this._client.send('Page.addScriptToEvaluateOnNewDocument', {
|
|
|
|
source: `//# sourceURL=${EVALUATION_SCRIPT_URL}`,
|
|
|
|
worldName: name,
|
|
|
|
}),
|
2020-05-07 10:54:55 +00:00
|
|
|
await Promise.all(
|
|
|
|
this.frames().map((frame) =>
|
|
|
|
this._client
|
|
|
|
.send('Page.createIsolatedWorld', {
|
|
|
|
frameId: frame._id,
|
|
|
|
grantUniveralAccess: true,
|
|
|
|
worldName: name,
|
|
|
|
})
|
|
|
|
.catch(debugError)
|
|
|
|
)
|
|
|
|
); // frames might be removed before we send this
|
2019-01-22 22:55:33 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_onFrameNavigatedWithinDocument(frameId: string, url: string): void {
|
2018-04-10 06:38:20 +00:00
|
|
|
const frame = this._frames.get(frameId);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (!frame) return;
|
2018-04-10 06:38:20 +00:00
|
|
|
frame._navigatedWithinDocument(url);
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.FrameManager.FrameNavigatedWithinDocument, frame);
|
|
|
|
this.emit(Events.FrameManager.FrameNavigated, frame);
|
2018-04-10 06:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_onFrameDetached(frameId: string): void {
|
2017-08-21 23:39:04 +00:00
|
|
|
const frame = this._frames.get(frameId);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (frame) this._removeFramesRecursively(frame);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
_onExecutionContextCreated(
|
|
|
|
contextPayload: Protocol.Runtime.ExecutionContextDescription
|
|
|
|
): void {
|
|
|
|
const auxData = contextPayload.auxData as { frameId?: string };
|
2020-04-29 11:28:16 +00:00
|
|
|
const frameId = auxData ? auxData.frameId : null;
|
2018-08-09 21:57:08 +00:00
|
|
|
const frame = this._frames.get(frameId) || null;
|
2019-01-22 22:55:33 +00:00
|
|
|
let world = null;
|
|
|
|
if (frame) {
|
2019-04-11 20:26:18 +00:00
|
|
|
if (contextPayload.auxData && !!contextPayload.auxData['isDefault']) {
|
2019-01-22 22:55:33 +00:00
|
|
|
world = frame._mainWorld;
|
2020-05-07 10:54:55 +00:00
|
|
|
} else if (
|
|
|
|
contextPayload.name === UTILITY_WORLD_NAME &&
|
|
|
|
!frame._secondaryWorld._hasContext()
|
|
|
|
) {
|
2019-04-11 20:26:18 +00:00
|
|
|
// In case of multiple sessions to the same target, there's a race between
|
|
|
|
// connections so we might end up creating multiple isolated worlds.
|
|
|
|
// We can use either.
|
2019-01-22 22:55:33 +00:00
|
|
|
world = frame._secondaryWorld;
|
2019-04-11 20:26:18 +00:00
|
|
|
}
|
2019-01-22 22:55:33 +00:00
|
|
|
}
|
|
|
|
if (contextPayload.auxData && contextPayload.auxData['type'] === 'isolated')
|
|
|
|
this._isolatedWorlds.add(contextPayload.name);
|
|
|
|
const context = new ExecutionContext(this._client, contextPayload, world);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (world) world._setContext(context);
|
2017-10-06 22:35:02 +00:00
|
|
|
this._contextIdToContext.set(contextPayload.id, context);
|
2017-11-19 00:27:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-04-08 00:58:52 +00:00
|
|
|
* @param {number} executionContextId
|
2017-11-19 00:27:52 +00:00
|
|
|
*/
|
2020-04-29 11:28:16 +00:00
|
|
|
_onExecutionContextDestroyed(executionContextId: number): void {
|
2017-11-19 00:27:52 +00:00
|
|
|
const context = this._contextIdToContext.get(executionContextId);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (!context) return;
|
2017-11-19 00:27:52 +00:00
|
|
|
this._contextIdToContext.delete(executionContextId);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (context._world) context._world._setContext(null);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_onExecutionContextsCleared(): void {
|
2018-08-10 01:14:21 +00:00
|
|
|
for (const context of this._contextIdToContext.values()) {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (context._world) context._world._setContext(null);
|
2018-08-09 21:57:08 +00:00
|
|
|
}
|
2018-08-10 01:14:21 +00:00
|
|
|
this._contextIdToContext.clear();
|
2017-10-06 22:35:02 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
executionContextById(contextId: number): ExecutionContext {
|
2017-10-06 22:35:02 +00:00
|
|
|
const context = this._contextIdToContext.get(contextId);
|
2018-05-31 23:53:51 +00:00
|
|
|
assert(context, 'INTERNAL ERROR: missing context with id = ' + contextId);
|
2018-08-01 20:53:08 +00:00
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_removeFramesRecursively(frame: Frame): void {
|
2017-08-21 23:39:04 +00:00
|
|
|
for (const child of frame.childFrames())
|
2017-06-21 20:51:06 +00:00
|
|
|
this._removeFramesRecursively(child);
|
|
|
|
frame._detach();
|
|
|
|
this._frames.delete(frame._id);
|
2019-01-15 03:57:05 +00:00
|
|
|
this.emit(Events.FrameManager.FrameDetached, frame);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
2017-06-17 21:27:51 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
export class Frame {
|
|
|
|
_frameManager: FrameManager;
|
|
|
|
_client: CDPSession;
|
|
|
|
_parentFrame?: Frame;
|
|
|
|
_id: string;
|
|
|
|
|
|
|
|
_url = '';
|
|
|
|
_detached = false;
|
|
|
|
_loaderId = '';
|
|
|
|
_name?: string;
|
|
|
|
|
|
|
|
_lifecycleEvents = new Set<string>();
|
|
|
|
_mainWorld: DOMWorld;
|
|
|
|
_secondaryWorld: DOMWorld;
|
|
|
|
_childFrames: Set<Frame>;
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
constructor(
|
|
|
|
frameManager: FrameManager,
|
|
|
|
client: CDPSession,
|
|
|
|
parentFrame: Frame | null,
|
|
|
|
frameId: string
|
|
|
|
) {
|
2018-08-16 23:16:27 +00:00
|
|
|
this._frameManager = frameManager;
|
2017-07-25 21:30:04 +00:00
|
|
|
this._client = client;
|
2017-06-21 20:51:06 +00:00
|
|
|
this._parentFrame = parentFrame;
|
|
|
|
this._url = '';
|
|
|
|
this._id = frameId;
|
2018-08-24 22:17:36 +00:00
|
|
|
this._detached = false;
|
2017-11-19 00:27:52 +00:00
|
|
|
|
2017-11-10 23:33:14 +00:00
|
|
|
this._loaderId = '';
|
2020-05-07 10:54:55 +00:00
|
|
|
this._mainWorld = new DOMWorld(
|
|
|
|
frameManager,
|
|
|
|
this,
|
|
|
|
frameManager._timeoutSettings
|
|
|
|
);
|
|
|
|
this._secondaryWorld = new DOMWorld(
|
|
|
|
frameManager,
|
|
|
|
this,
|
|
|
|
frameManager._timeoutSettings
|
|
|
|
);
|
2017-07-20 02:04:51 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
this._childFrames = new Set();
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._parentFrame) this._parentFrame._childFrames.add(this);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async goto(
|
|
|
|
url: string,
|
|
|
|
options: {
|
|
|
|
referer?: string;
|
|
|
|
timeout?: number;
|
|
|
|
waitUntil?: PuppeteerLifeCycleEvent | PuppeteerLifeCycleEvent[];
|
|
|
|
}
|
|
|
|
): Promise<Response | null> {
|
2018-09-20 18:31:19 +00:00
|
|
|
return await this._frameManager.navigateFrame(this, url, options);
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async waitForNavigation(options: {
|
|
|
|
timeout?: number;
|
|
|
|
waitUntil?: PuppeteerLifeCycleEvent | PuppeteerLifeCycleEvent[];
|
|
|
|
}): Promise<Response | null> {
|
2018-09-20 18:31:19 +00:00
|
|
|
return await this._frameManager.waitForFrameNavigation(this, options);
|
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
executionContext(): Promise<ExecutionContext> {
|
2019-01-16 01:21:23 +00:00
|
|
|
return this._mainWorld.executionContext();
|
2017-10-06 22:35:02 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async evaluateHandle(
|
|
|
|
pageFunction: Function | string,
|
|
|
|
...args: unknown[]
|
|
|
|
): Promise<JSHandle> {
|
2019-01-16 01:21:23 +00:00
|
|
|
return this._mainWorld.evaluateHandle(pageFunction, ...args);
|
2018-01-25 05:16:01 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async evaluate<ReturnType extends any>(
|
|
|
|
pageFunction: Function | string,
|
|
|
|
...args: unknown[]
|
|
|
|
): Promise<ReturnType> {
|
2020-04-29 11:28:16 +00:00
|
|
|
return this._mainWorld.evaluate<ReturnType>(pageFunction, ...args);
|
2017-08-15 21:54:02 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
async $(selector: string): Promise<ElementHandle | null> {
|
2019-01-16 01:21:23 +00:00
|
|
|
return this._mainWorld.$(selector);
|
2017-12-20 00:23:45 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
async $x(expression: string): Promise<ElementHandle[]> {
|
2019-01-16 01:21:23 +00:00
|
|
|
return this._mainWorld.$x(expression);
|
2017-08-15 21:54:02 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async $eval<ReturnType extends any>(
|
|
|
|
selector: string,
|
|
|
|
pageFunction: Function | string,
|
|
|
|
...args: unknown[]
|
|
|
|
): Promise<ReturnType> {
|
2020-04-29 11:28:16 +00:00
|
|
|
return this._mainWorld.$eval<ReturnType>(selector, pageFunction, ...args);
|
2017-08-31 22:38:01 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async $$eval<ReturnType extends any>(
|
|
|
|
selector: string,
|
|
|
|
pageFunction: Function | string,
|
|
|
|
...args: unknown[]
|
|
|
|
): Promise<ReturnType> {
|
2020-04-29 11:28:16 +00:00
|
|
|
return this._mainWorld.$$eval<ReturnType>(selector, pageFunction, ...args);
|
2017-10-11 06:23:14 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
async $$(selector: string): Promise<ElementHandle[]> {
|
2019-01-16 01:21:23 +00:00
|
|
|
return this._mainWorld.$$(selector);
|
2017-08-23 05:56:55 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
async content(): Promise<string> {
|
2019-01-23 04:24:14 +00:00
|
|
|
return this._secondaryWorld.content();
|
2017-11-23 02:44:33 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async setContent(
|
|
|
|
html: string,
|
|
|
|
options: {
|
|
|
|
timeout?: number;
|
|
|
|
waitUntil?: PuppeteerLifeCycleEvent | PuppeteerLifeCycleEvent[];
|
|
|
|
} = {}
|
|
|
|
): Promise<void> {
|
2019-01-23 04:24:14 +00:00
|
|
|
return this._secondaryWorld.setContent(html, options);
|
2017-11-23 02:44:33 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
name(): string {
|
2017-06-21 20:51:06 +00:00
|
|
|
return this._name || '';
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
url(): string {
|
2017-06-21 20:51:06 +00:00
|
|
|
return this._url;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
parentFrame(): Frame | null {
|
2017-06-21 20:51:06 +00:00
|
|
|
return this._parentFrame;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
childFrames(): Frame[] {
|
2017-06-21 20:51:06 +00:00
|
|
|
return Array.from(this._childFrames);
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
isDetached(): boolean {
|
2017-06-21 20:51:06 +00:00
|
|
|
return this._detached;
|
|
|
|
}
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async addScriptTag(options: {
|
|
|
|
url?: string;
|
|
|
|
path?: string;
|
|
|
|
content?: string;
|
|
|
|
type?: string;
|
|
|
|
}): Promise<ElementHandle> {
|
2019-01-16 01:21:23 +00:00
|
|
|
return this._mainWorld.addScriptTag(options);
|
2017-07-25 18:37:46 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async addStyleTag(options: {
|
|
|
|
url?: string;
|
|
|
|
path?: string;
|
|
|
|
content?: string;
|
|
|
|
}): Promise<ElementHandle> {
|
2019-01-16 01:21:23 +00:00
|
|
|
return this._mainWorld.addStyleTag(options);
|
2017-10-04 20:42:26 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async click(
|
|
|
|
selector: string,
|
|
|
|
options: { delay?: number; button?: MouseButtonInput; clickCount?: number }
|
|
|
|
): Promise<void> {
|
2019-01-23 04:24:14 +00:00
|
|
|
return this._secondaryWorld.click(selector, options);
|
2018-02-05 22:58:03 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
async focus(selector: string): Promise<void> {
|
2019-01-23 04:24:14 +00:00
|
|
|
return this._secondaryWorld.focus(selector);
|
2018-02-05 22:58:03 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
async hover(selector: string): Promise<void> {
|
2019-01-23 04:24:14 +00:00
|
|
|
return this._secondaryWorld.hover(selector);
|
2018-02-05 22:58:03 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
select(selector: string, ...values: string[]): Promise<string[]> {
|
2019-01-22 22:55:33 +00:00
|
|
|
return this._secondaryWorld.select(selector, ...values);
|
2017-11-02 05:06:04 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
async tap(selector: string): Promise<void> {
|
2019-01-23 04:24:14 +00:00
|
|
|
return this._secondaryWorld.tap(selector);
|
2018-02-05 22:58:03 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async type(
|
|
|
|
selector: string,
|
|
|
|
text: string,
|
|
|
|
options?: { delay: number }
|
|
|
|
): Promise<void> {
|
2019-01-16 01:21:23 +00:00
|
|
|
return this._mainWorld.type(selector, text, options);
|
2018-02-05 22:58:03 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
waitFor(
|
|
|
|
selectorOrFunctionOrTimeout: string | number | Function,
|
|
|
|
options: {} = {},
|
|
|
|
...args: unknown[]
|
|
|
|
): Promise<JSHandle | null> {
|
2019-01-22 22:55:33 +00:00
|
|
|
const xPathPattern = '//';
|
|
|
|
|
|
|
|
if (helper.isString(selectorOrFunctionOrTimeout)) {
|
2020-04-29 11:28:16 +00:00
|
|
|
const string = selectorOrFunctionOrTimeout;
|
2019-01-22 22:55:33 +00:00
|
|
|
if (string.startsWith(xPathPattern))
|
|
|
|
return this.waitForXPath(string, options);
|
|
|
|
return this.waitForSelector(string, options);
|
|
|
|
}
|
|
|
|
if (helper.isNumber(selectorOrFunctionOrTimeout))
|
2020-05-07 10:54:55 +00:00
|
|
|
return new Promise((fulfill) =>
|
|
|
|
setTimeout(fulfill, selectorOrFunctionOrTimeout)
|
|
|
|
);
|
2019-01-22 22:55:33 +00:00
|
|
|
if (typeof selectorOrFunctionOrTimeout === 'function')
|
2020-05-07 10:54:55 +00:00
|
|
|
return this.waitForFunction(
|
|
|
|
selectorOrFunctionOrTimeout,
|
|
|
|
options,
|
|
|
|
...args
|
|
|
|
);
|
|
|
|
return Promise.reject(
|
|
|
|
new Error(
|
|
|
|
'Unsupported target type: ' + typeof selectorOrFunctionOrTimeout
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
async waitForSelector(
|
|
|
|
selector: string,
|
|
|
|
options: WaitForSelectorOptions
|
|
|
|
): Promise<ElementHandle | null> {
|
|
|
|
const handle = await this._secondaryWorld.waitForSelector(
|
|
|
|
selector,
|
|
|
|
options
|
|
|
|
);
|
|
|
|
if (!handle) return null;
|
2019-01-28 20:24:27 +00:00
|
|
|
const mainExecutionContext = await this._mainWorld.executionContext();
|
|
|
|
const result = await mainExecutionContext._adoptElementHandle(handle);
|
|
|
|
await handle.dispose();
|
|
|
|
return result;
|
2018-01-22 23:16:20 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async waitForXPath(
|
|
|
|
xpath: string,
|
|
|
|
options: WaitForSelectorOptions
|
|
|
|
): Promise<ElementHandle | null> {
|
2019-01-28 20:24:27 +00:00
|
|
|
const handle = await this._secondaryWorld.waitForXPath(xpath, options);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (!handle) return null;
|
2019-01-28 20:24:27 +00:00
|
|
|
const mainExecutionContext = await this._mainWorld.executionContext();
|
|
|
|
const result = await mainExecutionContext._adoptElementHandle(handle);
|
|
|
|
await handle.dispose();
|
|
|
|
return result;
|
2018-01-22 23:16:20 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
waitForFunction(
|
|
|
|
pageFunction: Function | string,
|
|
|
|
options: { polling?: string | number; timeout?: number } = {},
|
|
|
|
...args: unknown[]
|
|
|
|
): Promise<JSHandle> {
|
2019-01-16 01:21:23 +00:00
|
|
|
return this._mainWorld.waitForFunction(pageFunction, options, ...args);
|
2018-01-22 23:16:20 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
async title(): Promise<string> {
|
2019-01-23 04:24:14 +00:00
|
|
|
return this._secondaryWorld.title();
|
2017-07-27 22:17:43 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_navigated(framePayload: Protocol.Page.Frame): void {
|
2017-06-21 20:51:06 +00:00
|
|
|
this._name = framePayload.name;
|
|
|
|
this._url = framePayload.url;
|
2017-11-10 23:33:14 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_navigatedWithinDocument(url: string): void {
|
2018-04-10 06:38:20 +00:00
|
|
|
this._url = url;
|
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_onLifecycleEvent(loaderId: string, name: string): void {
|
2017-11-10 23:33:14 +00:00
|
|
|
if (name === 'init') {
|
|
|
|
this._loaderId = loaderId;
|
|
|
|
this._lifecycleEvents.clear();
|
|
|
|
}
|
|
|
|
this._lifecycleEvents.add(name);
|
2017-06-21 20:51:06 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_onLoadingStopped(): void {
|
2018-04-10 22:59:41 +00:00
|
|
|
this._lifecycleEvents.add('DOMContentLoaded');
|
|
|
|
this._lifecycleEvents.add('load');
|
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
_detach(): void {
|
2017-06-21 20:51:06 +00:00
|
|
|
this._detached = true;
|
2019-01-16 01:21:23 +00:00
|
|
|
this._mainWorld._detach();
|
2019-01-22 22:55:33 +00:00
|
|
|
this._secondaryWorld._detach();
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._parentFrame) this._parentFrame._childFrames.delete(this);
|
2017-06-21 20:51:06 +00:00
|
|
|
this._parentFrame = null;
|
|
|
|
}
|
2017-06-17 21:27:51 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
function assertNoLegacyNavigationOptions(options: {
|
|
|
|
[optionName: string]: unknown;
|
|
|
|
}): void {
|
|
|
|
assert(
|
|
|
|
options['networkIdleTimeout'] === undefined,
|
|
|
|
'ERROR: networkIdleTimeout option is no longer supported.'
|
|
|
|
);
|
|
|
|
assert(
|
|
|
|
options['networkIdleInflight'] === undefined,
|
|
|
|
'ERROR: networkIdleInflight option is no longer supported.'
|
|
|
|
);
|
|
|
|
assert(
|
|
|
|
options.waitUntil !== 'networkidle',
|
|
|
|
'ERROR: "networkidle" option is no longer supported. Use "networkidle2" instead'
|
|
|
|
);
|
2018-11-20 23:32:46 +00:00
|
|
|
}
|