2019-01-16 01:21:23 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2019 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-07-13 09:22:26 +00:00
|
|
|
import { assert } from './assert.js';
|
2020-10-07 08:49:11 +00:00
|
|
|
import { helper, debugError } from './helper.js';
|
2020-07-13 09:22:26 +00:00
|
|
|
import {
|
|
|
|
LifecycleWatcher,
|
|
|
|
PuppeteerLifeCycleEvent,
|
|
|
|
} from './LifecycleWatcher.js';
|
|
|
|
import { TimeoutError } from './Errors.js';
|
|
|
|
import { JSHandle, ElementHandle } from './JSHandle.js';
|
|
|
|
import { ExecutionContext } from './ExecutionContext.js';
|
|
|
|
import { TimeoutSettings } from './TimeoutSettings.js';
|
|
|
|
import { MouseButton } from './Input.js';
|
|
|
|
import { FrameManager, Frame } from './FrameManager.js';
|
2020-07-17 05:29:42 +00:00
|
|
|
import { getQueryHandlerAndSelector } from './QueryHandler.js';
|
2020-07-01 11:44:08 +00:00
|
|
|
import {
|
|
|
|
SerializableOrJSHandle,
|
|
|
|
EvaluateHandleFn,
|
2020-07-02 09:09:34 +00:00
|
|
|
WrapElementHandle,
|
2020-07-10 10:52:13 +00:00
|
|
|
EvaluateFn,
|
|
|
|
EvaluateFnReturnType,
|
|
|
|
UnwrapPromiseLike,
|
2020-07-13 09:22:26 +00:00
|
|
|
} from './EvalTypes.js';
|
|
|
|
import { isNode } from '../environment.js';
|
2020-10-07 08:49:11 +00:00
|
|
|
import { Protocol } from 'devtools-protocol';
|
2020-04-30 11:45:52 +00:00
|
|
|
|
2020-09-21 13:47:33 +00:00
|
|
|
// predicateQueryHandler and checkWaitForOptions are declared here so that
|
|
|
|
// TypeScript knows about them when used in the predicate function below.
|
2020-07-17 05:29:42 +00:00
|
|
|
declare const predicateQueryHandler: (
|
|
|
|
element: Element | Document,
|
|
|
|
selector: string
|
2020-10-07 08:49:11 +00:00
|
|
|
) => Promise<Element | Element[] | NodeListOf<Element>>;
|
2020-09-21 13:47:33 +00:00
|
|
|
declare const checkWaitForOptions: (
|
|
|
|
node: Node,
|
|
|
|
waitForVisible: boolean,
|
|
|
|
waitForHidden: boolean
|
|
|
|
) => Element | null | boolean;
|
2020-04-20 10:32:08 +00:00
|
|
|
|
2020-07-02 15:13:22 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
2020-04-29 11:28:16 +00:00
|
|
|
export interface WaitForSelectorOptions {
|
2020-04-28 14:35:43 +00:00
|
|
|
visible?: boolean;
|
|
|
|
hidden?: boolean;
|
|
|
|
timeout?: number;
|
|
|
|
}
|
|
|
|
|
2020-07-02 15:13:22 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-04-28 14:35:43 +00:00
|
|
|
export class DOMWorld {
|
2020-07-06 11:37:16 +00:00
|
|
|
private _frameManager: FrameManager;
|
|
|
|
private _frame: Frame;
|
|
|
|
private _timeoutSettings: TimeoutSettings;
|
|
|
|
private _documentPromise?: Promise<ElementHandle> = null;
|
|
|
|
private _contextPromise?: Promise<ExecutionContext> = null;
|
2020-04-28 14:35:43 +00:00
|
|
|
|
2020-07-06 11:37:16 +00:00
|
|
|
private _contextResolveCallback?: (x?: ExecutionContext) => void = null;
|
2020-04-28 14:35:43 +00:00
|
|
|
|
2020-07-06 11:37:16 +00:00
|
|
|
private _detached = false;
|
|
|
|
/**
|
|
|
|
* internal
|
|
|
|
*/
|
2020-04-28 14:35:43 +00:00
|
|
|
_waitTasks = new Set<WaitTask>();
|
|
|
|
|
2020-10-07 08:49:11 +00:00
|
|
|
// Contains mapping from functions that should be bound to Puppeteer functions.
|
|
|
|
private _boundFunctions = new Map<string, Function>();
|
|
|
|
// Set of bindings that have been registered in the current context.
|
|
|
|
private _ctxBindings = new Set<string>();
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
constructor(
|
|
|
|
frameManager: FrameManager,
|
|
|
|
frame: Frame,
|
|
|
|
timeoutSettings: TimeoutSettings
|
|
|
|
) {
|
2019-01-16 01:21:23 +00:00
|
|
|
this._frameManager = frameManager;
|
|
|
|
this._frame = frame;
|
2019-01-29 01:16:12 +00:00
|
|
|
this._timeoutSettings = timeoutSettings;
|
2019-01-16 01:21:23 +00:00
|
|
|
this._setContext(null);
|
2020-10-07 08:49:11 +00:00
|
|
|
frameManager._client.on('Runtime.bindingCalled', (event) =>
|
|
|
|
this._onBindingCalled(event)
|
|
|
|
);
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:28:16 +00:00
|
|
|
frame(): Frame {
|
2019-01-22 22:55:33 +00:00
|
|
|
return this._frame;
|
|
|
|
}
|
|
|
|
|
2020-10-07 08:49:11 +00:00
|
|
|
async _setContext(context?: ExecutionContext): Promise<void> {
|
2019-01-16 01:21:23 +00:00
|
|
|
if (context) {
|
|
|
|
this._contextResolveCallback.call(null, context);
|
|
|
|
this._contextResolveCallback = null;
|
2020-10-07 08:49:11 +00:00
|
|
|
this._ctxBindings.clear();
|
|
|
|
for (const name of this._boundFunctions.keys()) {
|
|
|
|
await this.addBindingToContext(name);
|
|
|
|
}
|
2020-05-07 10:54:55 +00:00
|
|
|
for (const waitTask of this._waitTasks) waitTask.rerun();
|
2019-01-16 01:21:23 +00:00
|
|
|
} else {
|
|
|
|
this._documentPromise = null;
|
2020-05-07 10:54:55 +00:00
|
|
|
this._contextPromise = new Promise((fulfill) => {
|
2019-01-16 01:21:23 +00:00
|
|
|
this._contextResolveCallback = fulfill;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
_hasContext(): boolean {
|
2019-04-11 20:26:18 +00:00
|
|
|
return !this._contextResolveCallback;
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
_detach(): void {
|
2019-01-16 01:21:23 +00:00
|
|
|
this._detached = true;
|
|
|
|
for (const waitTask of this._waitTasks)
|
2020-05-07 10:54:55 +00:00
|
|
|
waitTask.terminate(
|
|
|
|
new Error('waitForFunction failed: frame got detached.')
|
|
|
|
);
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
executionContext(): Promise<ExecutionContext> {
|
2019-01-16 01:21:23 +00:00
|
|
|
if (this._detached)
|
2020-05-07 10:54:55 +00:00
|
|
|
throw new Error(
|
2020-10-07 08:49:11 +00:00
|
|
|
`Execution context is not available in detached frame "${this._frame.url()}" (are you trying to evaluate?)`
|
2020-05-07 10:54:55 +00:00
|
|
|
);
|
2019-01-16 01:21:23 +00:00
|
|
|
return this._contextPromise;
|
|
|
|
}
|
|
|
|
|
2020-07-01 11:44:08 +00:00
|
|
|
async evaluateHandle<HandlerType extends JSHandle = JSHandle>(
|
|
|
|
pageFunction: EvaluateHandleFn,
|
|
|
|
...args: SerializableOrJSHandle[]
|
|
|
|
): Promise<HandlerType> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const context = await this.executionContext();
|
|
|
|
return context.evaluateHandle(pageFunction, ...args);
|
|
|
|
}
|
|
|
|
|
2020-07-10 10:52:13 +00:00
|
|
|
async evaluate<T extends EvaluateFn>(
|
|
|
|
pageFunction: T,
|
|
|
|
...args: SerializableOrJSHandle[]
|
|
|
|
): Promise<UnwrapPromiseLike<EvaluateFnReturnType<T>>> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const context = await this.executionContext();
|
2020-07-10 10:52:13 +00:00
|
|
|
return context.evaluate<UnwrapPromiseLike<EvaluateFnReturnType<T>>>(
|
|
|
|
pageFunction,
|
|
|
|
...args
|
|
|
|
);
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async $(selector: string): Promise<ElementHandle | null> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const document = await this._document();
|
|
|
|
const value = await document.$(selector);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async _document(): Promise<ElementHandle> {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (this._documentPromise) return this._documentPromise;
|
|
|
|
this._documentPromise = this.executionContext().then(async (context) => {
|
2019-01-16 01:21:23 +00:00
|
|
|
const document = await context.evaluateHandle('document');
|
|
|
|
return document.asElement();
|
|
|
|
});
|
|
|
|
return this._documentPromise;
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async $x(expression: string): Promise<ElementHandle[]> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const document = await this._document();
|
|
|
|
const value = await document.$x(expression);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2020-07-02 09:09:34 +00:00
|
|
|
async $eval<ReturnType>(
|
2020-05-07 10:54:55 +00:00
|
|
|
selector: string,
|
2020-07-02 09:09:34 +00:00
|
|
|
pageFunction: (
|
|
|
|
element: Element,
|
|
|
|
...args: unknown[]
|
|
|
|
) => ReturnType | Promise<ReturnType>,
|
2020-06-25 12:38:01 +00:00
|
|
|
...args: SerializableOrJSHandle[]
|
2020-07-02 09:09:34 +00:00
|
|
|
): Promise<WrapElementHandle<ReturnType>> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const document = await this._document();
|
2020-04-28 14:35:43 +00:00
|
|
|
return document.$eval<ReturnType>(selector, pageFunction, ...args);
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 14:23:51 +00:00
|
|
|
async $$eval<ReturnType>(
|
2020-05-07 10:54:55 +00:00
|
|
|
selector: string,
|
2020-07-03 14:23:51 +00:00
|
|
|
pageFunction: (
|
|
|
|
elements: Element[],
|
|
|
|
...args: unknown[]
|
|
|
|
) => ReturnType | Promise<ReturnType>,
|
2020-06-25 12:38:01 +00:00
|
|
|
...args: SerializableOrJSHandle[]
|
2020-07-03 14:23:51 +00:00
|
|
|
): Promise<WrapElementHandle<ReturnType>> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const document = await this._document();
|
2020-05-07 10:54:55 +00:00
|
|
|
const value = await document.$$eval<ReturnType>(
|
|
|
|
selector,
|
|
|
|
pageFunction,
|
|
|
|
...args
|
|
|
|
);
|
2019-01-16 01:21:23 +00:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async $$(selector: string): Promise<ElementHandle[]> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const document = await this._document();
|
|
|
|
const value = await document.$$(selector);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async content(): Promise<string> {
|
2019-01-16 01:21:23 +00:00
|
|
|
return await this.evaluate(() => {
|
|
|
|
let retVal = '';
|
|
|
|
if (document.doctype)
|
|
|
|
retVal = new XMLSerializer().serializeToString(document.doctype);
|
|
|
|
if (document.documentElement)
|
|
|
|
retVal += document.documentElement.outerHTML;
|
|
|
|
return retVal;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async setContent(
|
|
|
|
html: string,
|
|
|
|
options: {
|
|
|
|
timeout?: number;
|
|
|
|
waitUntil?: PuppeteerLifeCycleEvent | PuppeteerLifeCycleEvent[];
|
|
|
|
} = {}
|
|
|
|
): Promise<void> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const {
|
|
|
|
waitUntil = ['load'],
|
2019-01-29 01:16:12 +00:00
|
|
|
timeout = this._timeoutSettings.navigationTimeout(),
|
2019-01-16 01:21:23 +00:00
|
|
|
} = options;
|
|
|
|
// We rely upon the fact that document.open() will reset frame lifecycle with "init"
|
|
|
|
// lifecycle event. @see https://crrev.com/608658
|
2020-07-10 10:52:13 +00:00
|
|
|
await this.evaluate<(x: string) => void>((html) => {
|
2019-01-16 01:21:23 +00:00
|
|
|
document.open();
|
2019-05-22 18:21:45 +00:00
|
|
|
document.write(html);
|
2019-01-16 01:21:23 +00:00
|
|
|
document.close();
|
2019-05-22 18:21:45 +00:00
|
|
|
}, html);
|
2020-05-07 10:54:55 +00:00
|
|
|
const watcher = new LifecycleWatcher(
|
|
|
|
this._frameManager,
|
|
|
|
this._frame,
|
|
|
|
waitUntil,
|
|
|
|
timeout
|
|
|
|
);
|
2019-01-16 01:21:23 +00:00
|
|
|
const error = await Promise.race([
|
|
|
|
watcher.timeoutOrTerminationPromise(),
|
|
|
|
watcher.lifecyclePromise(),
|
|
|
|
]);
|
|
|
|
watcher.dispose();
|
2020-05-07 10:54:55 +00:00
|
|
|
if (error) throw error;
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-06-25 09:19:10 +00:00
|
|
|
* Adds a script tag into the current context.
|
|
|
|
*
|
|
|
|
* @remarks
|
|
|
|
*
|
|
|
|
* You can pass a URL, filepath or string of contents. Note that when running Puppeteer
|
|
|
|
* in a browser environment you cannot pass a filepath and should use either
|
|
|
|
* `url` or `content`.
|
2019-01-16 01:21:23 +00:00
|
|
|
*/
|
2020-05-07 10:54:55 +00:00
|
|
|
async addScriptTag(options: {
|
|
|
|
url?: string;
|
|
|
|
path?: string;
|
|
|
|
content?: string;
|
|
|
|
type?: string;
|
|
|
|
}): Promise<ElementHandle> {
|
|
|
|
const { url = null, path = null, content = null, type = '' } = options;
|
2019-01-16 01:21:23 +00:00
|
|
|
if (url !== null) {
|
|
|
|
try {
|
|
|
|
const context = await this.executionContext();
|
2020-05-07 10:54:55 +00:00
|
|
|
return (
|
|
|
|
await context.evaluateHandle(addScriptUrl, url, type)
|
|
|
|
).asElement();
|
2019-01-16 01:21:23 +00:00
|
|
|
} catch (error) {
|
|
|
|
throw new Error(`Loading script from ${url} failed`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (path !== null) {
|
2020-06-25 09:19:10 +00:00
|
|
|
if (!isNode) {
|
|
|
|
throw new Error(
|
|
|
|
'Cannot pass a filepath to addScriptTag in the browser environment.'
|
|
|
|
);
|
|
|
|
}
|
2020-09-28 09:35:35 +00:00
|
|
|
const fs = await import('fs');
|
|
|
|
let contents = await fs.promises.readFile(path, 'utf8');
|
2019-01-16 01:21:23 +00:00
|
|
|
contents += '//# sourceURL=' + path.replace(/\n/g, '');
|
|
|
|
const context = await this.executionContext();
|
2020-05-07 10:54:55 +00:00
|
|
|
return (
|
|
|
|
await context.evaluateHandle(addScriptContent, contents, type)
|
|
|
|
).asElement();
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (content !== null) {
|
|
|
|
const context = await this.executionContext();
|
2020-05-07 10:54:55 +00:00
|
|
|
return (
|
|
|
|
await context.evaluateHandle(addScriptContent, content, type)
|
|
|
|
).asElement();
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
throw new Error(
|
|
|
|
'Provide an object with a `url`, `path` or `content` property'
|
|
|
|
);
|
2019-01-16 01:21:23 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async function addScriptUrl(
|
|
|
|
url: string,
|
|
|
|
type: string
|
|
|
|
): Promise<HTMLElement> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const script = document.createElement('script');
|
|
|
|
script.src = url;
|
2020-05-07 10:54:55 +00:00
|
|
|
if (type) script.type = type;
|
2019-01-16 01:21:23 +00:00
|
|
|
const promise = new Promise((res, rej) => {
|
|
|
|
script.onload = res;
|
|
|
|
script.onerror = rej;
|
|
|
|
});
|
|
|
|
document.head.appendChild(script);
|
|
|
|
await promise;
|
|
|
|
return script;
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
function addScriptContent(
|
|
|
|
content: string,
|
|
|
|
type = 'text/javascript'
|
|
|
|
): HTMLElement {
|
2019-01-16 01:21:23 +00:00
|
|
|
const script = document.createElement('script');
|
|
|
|
script.type = type;
|
|
|
|
script.text = content;
|
|
|
|
let error = null;
|
2020-05-07 10:54:55 +00:00
|
|
|
script.onerror = (e) => (error = e);
|
2019-01-16 01:21:23 +00:00
|
|
|
document.head.appendChild(script);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (error) throw error;
|
2019-01-16 01:21:23 +00:00
|
|
|
return script;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 09:19:10 +00:00
|
|
|
/**
|
|
|
|
* Adds a style tag into the current context.
|
|
|
|
*
|
|
|
|
* @remarks
|
|
|
|
*
|
|
|
|
* You can pass a URL, filepath or string of contents. Note that when running Puppeteer
|
|
|
|
* in a browser environment you cannot pass a filepath and should use either
|
|
|
|
* `url` or `content`.
|
|
|
|
*
|
|
|
|
*/
|
2020-05-07 10:54:55 +00:00
|
|
|
async addStyleTag(options: {
|
|
|
|
url?: string;
|
|
|
|
path?: string;
|
|
|
|
content?: string;
|
|
|
|
}): Promise<ElementHandle> {
|
|
|
|
const { url = null, path = null, content = null } = options;
|
2019-01-16 01:21:23 +00:00
|
|
|
if (url !== null) {
|
|
|
|
try {
|
|
|
|
const context = await this.executionContext();
|
|
|
|
return (await context.evaluateHandle(addStyleUrl, url)).asElement();
|
|
|
|
} catch (error) {
|
|
|
|
throw new Error(`Loading style from ${url} failed`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (path !== null) {
|
2020-06-25 09:19:10 +00:00
|
|
|
if (!isNode) {
|
|
|
|
throw new Error(
|
|
|
|
'Cannot pass a filepath to addStyleTag in the browser environment.'
|
|
|
|
);
|
|
|
|
}
|
2020-09-28 09:35:35 +00:00
|
|
|
const fs = await import('fs');
|
|
|
|
let contents = await fs.promises.readFile(path, 'utf8');
|
2019-01-16 01:21:23 +00:00
|
|
|
contents += '/*# sourceURL=' + path.replace(/\n/g, '') + '*/';
|
|
|
|
const context = await this.executionContext();
|
2020-05-07 10:54:55 +00:00
|
|
|
return (
|
|
|
|
await context.evaluateHandle(addStyleContent, contents)
|
|
|
|
).asElement();
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (content !== null) {
|
|
|
|
const context = await this.executionContext();
|
2020-05-07 10:54:55 +00:00
|
|
|
return (
|
|
|
|
await context.evaluateHandle(addStyleContent, content)
|
|
|
|
).asElement();
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
throw new Error(
|
|
|
|
'Provide an object with a `url`, `path` or `content` property'
|
|
|
|
);
|
2019-01-16 01:21:23 +00:00
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async function addStyleUrl(url: string): Promise<HTMLElement> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const link = document.createElement('link');
|
|
|
|
link.rel = 'stylesheet';
|
|
|
|
link.href = url;
|
|
|
|
const promise = new Promise((res, rej) => {
|
|
|
|
link.onload = res;
|
|
|
|
link.onerror = rej;
|
|
|
|
});
|
|
|
|
document.head.appendChild(link);
|
|
|
|
await promise;
|
|
|
|
return link;
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async function addStyleContent(content: string): Promise<HTMLElement> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const style = document.createElement('style');
|
|
|
|
style.type = 'text/css';
|
|
|
|
style.appendChild(document.createTextNode(content));
|
|
|
|
const promise = new Promise((res, rej) => {
|
|
|
|
style.onload = res;
|
|
|
|
style.onerror = rej;
|
|
|
|
});
|
|
|
|
document.head.appendChild(style);
|
|
|
|
await promise;
|
|
|
|
return style;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async click(
|
|
|
|
selector: string,
|
2020-07-02 11:15:39 +00:00
|
|
|
options: { delay?: number; button?: MouseButton; clickCount?: number }
|
2020-05-07 10:54:55 +00:00
|
|
|
): Promise<void> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const handle = await this.$(selector);
|
|
|
|
assert(handle, 'No node found for selector: ' + selector);
|
|
|
|
await handle.click(options);
|
|
|
|
await handle.dispose();
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async focus(selector: string): Promise<void> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const handle = await this.$(selector);
|
|
|
|
assert(handle, 'No node found for selector: ' + selector);
|
|
|
|
await handle.focus();
|
|
|
|
await handle.dispose();
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async hover(selector: string): Promise<void> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const handle = await this.$(selector);
|
|
|
|
assert(handle, 'No node found for selector: ' + selector);
|
|
|
|
await handle.hover();
|
|
|
|
await handle.dispose();
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async select(selector: string, ...values: string[]): Promise<string[]> {
|
2019-09-04 22:19:34 +00:00
|
|
|
const handle = await this.$(selector);
|
|
|
|
assert(handle, 'No node found for selector: ' + selector);
|
|
|
|
const result = await handle.select(...values);
|
|
|
|
await handle.dispose();
|
|
|
|
return result;
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async tap(selector: string): Promise<void> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const handle = await this.$(selector);
|
|
|
|
await handle.tap();
|
|
|
|
await handle.dispose();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
const handle = await this.$(selector);
|
|
|
|
assert(handle, 'No node found for selector: ' + selector);
|
|
|
|
await handle.type(text, options);
|
|
|
|
await handle.dispose();
|
|
|
|
}
|
|
|
|
|
2020-09-21 13:47:33 +00:00
|
|
|
async waitForSelector(
|
2020-05-07 10:54:55 +00:00
|
|
|
selector: string,
|
|
|
|
options: WaitForSelectorOptions
|
2020-09-23 14:02:22 +00:00
|
|
|
): Promise<ElementHandle | null> {
|
|
|
|
const { updatedSelector, queryHandler } = getQueryHandlerAndSelector(
|
|
|
|
selector
|
|
|
|
);
|
|
|
|
return queryHandler.waitFor(this, updatedSelector, options);
|
|
|
|
}
|
|
|
|
|
2020-10-07 08:49:11 +00:00
|
|
|
// If multiple waitFor are set up asynchronously, we need to wait for the
|
|
|
|
// first one to set up the binding in the page before running the others.
|
|
|
|
private _settingUpBinding: Promise<void> | null = null;
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
async addBindingToContext(name: string) {
|
|
|
|
// Previous operation added the binding so we are done.
|
|
|
|
if (this._ctxBindings.has(name)) return;
|
|
|
|
// Wait for other operation to finish
|
|
|
|
if (this._settingUpBinding) {
|
|
|
|
await this._settingUpBinding;
|
|
|
|
return this.addBindingToContext(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
const bind = async (name: string) => {
|
|
|
|
const expression = helper.pageBindingInitString('internal', name);
|
|
|
|
try {
|
|
|
|
const context = await this.executionContext();
|
|
|
|
await context._client.send('Runtime.addBinding', {
|
|
|
|
name,
|
|
|
|
executionContextId: context._contextId,
|
|
|
|
});
|
|
|
|
await context.evaluate(expression);
|
|
|
|
} catch (error) {
|
|
|
|
// We could have tried to evaluate in a context which was already
|
|
|
|
// destroyed. This happens, for example, if the page is navigated while
|
|
|
|
// we are trying to add the binding
|
|
|
|
const ctxDestroyed = error.message.includes(
|
|
|
|
'Execution context was destroyed'
|
|
|
|
);
|
|
|
|
const ctxNotFound = error.message.includes(
|
|
|
|
'Cannot find context with specified id'
|
|
|
|
);
|
|
|
|
if (ctxDestroyed || ctxNotFound) {
|
|
|
|
// Retry adding the binding in the next context
|
|
|
|
await bind(name);
|
|
|
|
} else {
|
|
|
|
debugError(error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this._ctxBindings.add(name);
|
|
|
|
};
|
|
|
|
|
|
|
|
this._settingUpBinding = bind(name);
|
|
|
|
await this._settingUpBinding;
|
|
|
|
this._settingUpBinding = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
async addBinding(name: string, puppeteerFunction: Function): Promise<void> {
|
|
|
|
this._boundFunctions.set(name, puppeteerFunction);
|
|
|
|
await this.addBindingToContext(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
private async _onBindingCalled(
|
|
|
|
event: Protocol.Runtime.BindingCalledEvent
|
|
|
|
): Promise<void> {
|
|
|
|
const { type, name, seq, args } = JSON.parse(event.payload);
|
|
|
|
if (type !== 'internal' || !this._ctxBindings.has(name)) return;
|
|
|
|
if (!this._hasContext()) return;
|
|
|
|
const context = await this.executionContext();
|
|
|
|
if (context._contextId !== event.executionContextId) return;
|
|
|
|
try {
|
|
|
|
const result = await this._boundFunctions.get(name)(...args);
|
|
|
|
await context.evaluate(deliverResult, name, seq, result);
|
|
|
|
} catch (error) {
|
|
|
|
// The WaitTask may already have been resolved by timing out, or the
|
|
|
|
// exection context may have been destroyed.
|
|
|
|
// In both caes, the promises above are rejected with a protocol error.
|
|
|
|
// We can safely ignores these, as the WaitTask is re-installed in
|
|
|
|
// the next execution context if needed.
|
|
|
|
if (error.message.includes('Protocol error')) return;
|
|
|
|
debugError(error);
|
|
|
|
}
|
|
|
|
function deliverResult(name: string, seq: number, result: unknown): void {
|
|
|
|
globalThis[name].callbacks.get(seq).resolve(result);
|
|
|
|
globalThis[name].callbacks.delete(seq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-23 14:02:22 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
async waitForSelectorInPage(
|
|
|
|
queryOne: Function,
|
|
|
|
selector: string,
|
|
|
|
options: WaitForSelectorOptions
|
2020-05-07 10:54:55 +00:00
|
|
|
): Promise<ElementHandle | null> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const {
|
2020-09-21 13:47:33 +00:00
|
|
|
visible: waitForVisible = false,
|
|
|
|
hidden: waitForHidden = false,
|
2019-01-29 01:16:12 +00:00
|
|
|
timeout = this._timeoutSettings.timeout(),
|
2019-01-16 01:21:23 +00:00
|
|
|
} = options;
|
2020-09-21 13:47:33 +00:00
|
|
|
const polling = waitForVisible || waitForHidden ? 'raf' : 'mutation';
|
|
|
|
const title = `selector \`${selector}\`${
|
|
|
|
waitForHidden ? ' to be hidden' : ''
|
|
|
|
}`;
|
2020-10-07 08:49:11 +00:00
|
|
|
async function predicate(
|
2020-09-21 13:47:33 +00:00
|
|
|
selector: string,
|
|
|
|
waitForVisible: boolean,
|
|
|
|
waitForHidden: boolean
|
2020-10-07 08:49:11 +00:00
|
|
|
): Promise<Node | null | boolean> {
|
2020-09-21 13:47:33 +00:00
|
|
|
const node = predicateQueryHandler
|
2020-10-07 08:49:11 +00:00
|
|
|
? ((await predicateQueryHandler(document, selector)) as Element)
|
2020-09-21 13:47:33 +00:00
|
|
|
: document.querySelector(selector);
|
|
|
|
return checkWaitForOptions(node, waitForVisible, waitForHidden);
|
|
|
|
}
|
|
|
|
const waitTask = new WaitTask(
|
2020-05-07 10:54:55 +00:00
|
|
|
this,
|
2020-10-07 08:49:11 +00:00
|
|
|
helper.makePredicateString(predicate, queryOne),
|
2020-09-21 13:47:33 +00:00
|
|
|
title,
|
2020-05-07 10:54:55 +00:00
|
|
|
polling,
|
|
|
|
timeout,
|
2020-09-23 14:02:22 +00:00
|
|
|
selector,
|
2020-09-21 13:47:33 +00:00
|
|
|
waitForVisible,
|
|
|
|
waitForHidden
|
|
|
|
);
|
|
|
|
const jsHandle = await waitTask.promise;
|
|
|
|
const elementHandle = jsHandle.asElement();
|
|
|
|
if (!elementHandle) {
|
|
|
|
await jsHandle.dispose();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return elementHandle;
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
2020-09-21 13:47:33 +00:00
|
|
|
async waitForXPath(
|
|
|
|
xpath: string,
|
|
|
|
options: WaitForSelectorOptions
|
2020-05-07 10:54:55 +00:00
|
|
|
): Promise<ElementHandle | null> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const {
|
|
|
|
visible: waitForVisible = false,
|
|
|
|
hidden: waitForHidden = false,
|
2019-01-29 01:16:12 +00:00
|
|
|
timeout = this._timeoutSettings.timeout(),
|
2019-01-16 01:21:23 +00:00
|
|
|
} = options;
|
|
|
|
const polling = waitForVisible || waitForHidden ? 'raf' : 'mutation';
|
2020-09-21 13:47:33 +00:00
|
|
|
const title = `XPath \`${xpath}\`${waitForHidden ? ' to be hidden' : ''}`;
|
|
|
|
function predicate(
|
|
|
|
xpath: string,
|
|
|
|
waitForVisible: boolean,
|
|
|
|
waitForHidden: boolean
|
|
|
|
): Node | null | boolean {
|
|
|
|
const node = document.evaluate(
|
|
|
|
xpath,
|
|
|
|
document,
|
|
|
|
null,
|
|
|
|
XPathResult.FIRST_ORDERED_NODE_TYPE,
|
|
|
|
null
|
|
|
|
).singleNodeValue;
|
|
|
|
return checkWaitForOptions(node, waitForVisible, waitForHidden);
|
|
|
|
}
|
2020-05-07 10:54:55 +00:00
|
|
|
const waitTask = new WaitTask(
|
|
|
|
this,
|
2020-10-07 08:49:11 +00:00
|
|
|
helper.makePredicateString(predicate),
|
2020-05-07 10:54:55 +00:00
|
|
|
title,
|
|
|
|
polling,
|
|
|
|
timeout,
|
2020-09-21 13:47:33 +00:00
|
|
|
xpath,
|
2020-05-07 10:54:55 +00:00
|
|
|
waitForVisible,
|
|
|
|
waitForHidden
|
|
|
|
);
|
2020-09-21 13:47:33 +00:00
|
|
|
const jsHandle = await waitTask.promise;
|
|
|
|
const elementHandle = jsHandle.asElement();
|
|
|
|
if (!elementHandle) {
|
|
|
|
await jsHandle.dispose();
|
2019-01-28 19:24:53 +00:00
|
|
|
return null;
|
|
|
|
}
|
2020-09-21 13:47:33 +00:00
|
|
|
return elementHandle;
|
|
|
|
}
|
2019-01-16 01:21:23 +00:00
|
|
|
|
2020-09-21 13:47:33 +00:00
|
|
|
waitForFunction(
|
|
|
|
pageFunction: Function | string,
|
|
|
|
options: { polling?: string | number; timeout?: number } = {},
|
|
|
|
...args: SerializableOrJSHandle[]
|
|
|
|
): Promise<JSHandle> {
|
|
|
|
const {
|
|
|
|
polling = 'raf',
|
|
|
|
timeout = this._timeoutSettings.timeout(),
|
|
|
|
} = options;
|
|
|
|
return new WaitTask(
|
|
|
|
this,
|
|
|
|
pageFunction,
|
|
|
|
'function',
|
|
|
|
polling,
|
|
|
|
timeout,
|
|
|
|
...args
|
|
|
|
).promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
async title(): Promise<string> {
|
|
|
|
return this.evaluate(() => document.title);
|
|
|
|
}
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
2020-10-07 08:49:11 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
export class WaitTask {
|
2020-04-28 14:35:43 +00:00
|
|
|
_domWorld: DOMWorld;
|
|
|
|
_polling: string | number;
|
|
|
|
_timeout: number;
|
|
|
|
_predicateBody: string;
|
2020-07-01 11:44:08 +00:00
|
|
|
_args: SerializableOrJSHandle[];
|
2020-04-28 14:35:43 +00:00
|
|
|
_runCount = 0;
|
|
|
|
promise: Promise<JSHandle>;
|
|
|
|
_resolve: (x: JSHandle) => void;
|
|
|
|
_reject: (x: Error) => void;
|
|
|
|
_timeoutTimer?: NodeJS.Timeout;
|
|
|
|
_terminated = false;
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
constructor(
|
|
|
|
domWorld: DOMWorld,
|
|
|
|
predicateBody: Function | string,
|
|
|
|
title: string,
|
|
|
|
polling: string | number,
|
|
|
|
timeout: number,
|
2020-07-01 11:44:08 +00:00
|
|
|
...args: SerializableOrJSHandle[]
|
2020-05-07 10:54:55 +00:00
|
|
|
) {
|
2019-01-16 01:21:23 +00:00
|
|
|
if (helper.isString(polling))
|
2020-05-07 10:54:55 +00:00
|
|
|
assert(
|
|
|
|
polling === 'raf' || polling === 'mutation',
|
|
|
|
'Unknown polling option: ' + polling
|
|
|
|
);
|
2019-01-16 01:21:23 +00:00
|
|
|
else if (helper.isNumber(polling))
|
|
|
|
assert(polling > 0, 'Cannot poll with non-positive interval: ' + polling);
|
2020-05-07 10:54:55 +00:00
|
|
|
else throw new Error('Unknown polling options: ' + polling);
|
2019-01-16 01:21:23 +00:00
|
|
|
|
2020-09-21 13:47:33 +00:00
|
|
|
function getPredicateBody(predicateBody: Function | string) {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (helper.isString(predicateBody)) return `return (${predicateBody});`;
|
2020-04-30 11:45:52 +00:00
|
|
|
return `return (${predicateBody})(...args);`;
|
|
|
|
}
|
|
|
|
|
2019-01-16 01:21:23 +00:00
|
|
|
this._domWorld = domWorld;
|
|
|
|
this._polling = polling;
|
|
|
|
this._timeout = timeout;
|
2020-09-21 13:47:33 +00:00
|
|
|
this._predicateBody = getPredicateBody(predicateBody);
|
2019-01-16 01:21:23 +00:00
|
|
|
this._args = args;
|
|
|
|
this._runCount = 0;
|
|
|
|
domWorld._waitTasks.add(this);
|
2020-04-28 14:35:43 +00:00
|
|
|
this.promise = new Promise<JSHandle>((resolve, reject) => {
|
2019-01-16 01:21:23 +00:00
|
|
|
this._resolve = resolve;
|
|
|
|
this._reject = reject;
|
|
|
|
});
|
|
|
|
// Since page navigation requires us to re-install the pageScript, we should track
|
|
|
|
// timeout on our end.
|
|
|
|
if (timeout) {
|
2020-05-07 10:54:55 +00:00
|
|
|
const timeoutError = new TimeoutError(
|
|
|
|
`waiting for ${title} failed: timeout ${timeout}ms exceeded`
|
|
|
|
);
|
|
|
|
this._timeoutTimer = setTimeout(
|
|
|
|
() => this.terminate(timeoutError),
|
|
|
|
timeout
|
|
|
|
);
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
this.rerun();
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
terminate(error: Error): void {
|
2019-01-16 01:21:23 +00:00
|
|
|
this._terminated = true;
|
|
|
|
this._reject(error);
|
|
|
|
this._cleanup();
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
async rerun(): Promise<void> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const runCount = ++this._runCount;
|
2020-04-21 11:11:06 +00:00
|
|
|
/** @type {?JSHandle} */
|
2019-01-16 01:21:23 +00:00
|
|
|
let success = null;
|
|
|
|
let error = null;
|
|
|
|
try {
|
2020-05-07 10:54:55 +00:00
|
|
|
success = await (await this._domWorld.executionContext()).evaluateHandle(
|
|
|
|
waitForPredicatePageFunction,
|
|
|
|
this._predicateBody,
|
|
|
|
this._polling,
|
|
|
|
this._timeout,
|
|
|
|
...this._args
|
|
|
|
);
|
2020-04-28 13:16:28 +00:00
|
|
|
} catch (error_) {
|
|
|
|
error = error_;
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this._terminated || runCount !== this._runCount) {
|
2020-05-07 10:54:55 +00:00
|
|
|
if (success) await success.dispose();
|
2019-01-16 01:21:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ignore timeouts in pageScript - we track timeouts ourselves.
|
|
|
|
// If the frame's execution context has already changed, `frame.evaluate` will
|
|
|
|
// throw an error - ignore this predicate run altogether.
|
2020-05-07 10:54:55 +00:00
|
|
|
if (
|
|
|
|
!error &&
|
|
|
|
(await this._domWorld.evaluate((s) => !s, success).catch(() => true))
|
|
|
|
) {
|
2019-01-16 01:21:23 +00:00
|
|
|
await success.dispose();
|
|
|
|
return;
|
|
|
|
}
|
2020-10-07 08:49:11 +00:00
|
|
|
// When frame is detached the task should have been terminated by the DOMWorld.
|
|
|
|
// This can fail if we were adding this task while the frame was detached,
|
|
|
|
// so we terminate here instead.
|
|
|
|
if (error) {
|
|
|
|
if (
|
|
|
|
error.message.includes(
|
|
|
|
'Execution context is not available in detached frame'
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
this.terminate(
|
|
|
|
new Error('waitForFunction failed: frame got detached.')
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2019-01-16 01:21:23 +00:00
|
|
|
|
2020-10-07 08:49:11 +00:00
|
|
|
// When the page is navigated, the promise is rejected.
|
|
|
|
// We will try again in the new execution context.
|
|
|
|
if (error.message.includes('Execution context was destroyed')) return;
|
2019-01-16 01:21:23 +00:00
|
|
|
|
2020-10-07 08:49:11 +00:00
|
|
|
// We could have tried to evaluate in a context which was already
|
|
|
|
// destroyed.
|
|
|
|
if (error.message.includes('Cannot find context with specified id'))
|
|
|
|
return;
|
2019-01-16 01:21:23 +00:00
|
|
|
|
2020-10-07 08:49:11 +00:00
|
|
|
this._reject(error);
|
|
|
|
} else {
|
|
|
|
this._resolve(success);
|
|
|
|
}
|
2019-01-16 01:21:23 +00:00
|
|
|
this._cleanup();
|
|
|
|
}
|
|
|
|
|
2020-04-28 14:35:43 +00:00
|
|
|
_cleanup(): void {
|
2019-01-16 01:21:23 +00:00
|
|
|
clearTimeout(this._timeoutTimer);
|
|
|
|
this._domWorld._waitTasks.delete(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
async function waitForPredicatePageFunction(
|
|
|
|
predicateBody: string,
|
|
|
|
polling: string,
|
|
|
|
timeout: number,
|
|
|
|
...args: unknown[]
|
|
|
|
): Promise<unknown> {
|
2019-01-16 01:21:23 +00:00
|
|
|
const predicate = new Function('...args', predicateBody);
|
|
|
|
let timedOut = false;
|
2020-05-07 10:54:55 +00:00
|
|
|
if (timeout) setTimeout(() => (timedOut = true), timeout);
|
|
|
|
if (polling === 'raf') return await pollRaf();
|
|
|
|
if (polling === 'mutation') return await pollMutation();
|
|
|
|
if (typeof polling === 'number') return await pollInterval(polling);
|
2019-01-16 01:21:23 +00:00
|
|
|
|
|
|
|
/**
|
2020-06-12 10:38:24 +00:00
|
|
|
* @returns {!Promise<*>}
|
2019-01-16 01:21:23 +00:00
|
|
|
*/
|
2020-05-19 07:09:31 +00:00
|
|
|
async function pollMutation(): Promise<unknown> {
|
|
|
|
const success = await predicate(...args);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (success) return Promise.resolve(success);
|
2019-01-16 01:21:23 +00:00
|
|
|
|
|
|
|
let fulfill;
|
2020-05-07 10:54:55 +00:00
|
|
|
const result = new Promise((x) => (fulfill = x));
|
2020-05-19 07:09:31 +00:00
|
|
|
const observer = new MutationObserver(async () => {
|
2019-01-16 01:21:23 +00:00
|
|
|
if (timedOut) {
|
|
|
|
observer.disconnect();
|
|
|
|
fulfill();
|
|
|
|
}
|
2020-05-19 07:09:31 +00:00
|
|
|
const success = await predicate(...args);
|
2019-01-16 01:21:23 +00:00
|
|
|
if (success) {
|
|
|
|
observer.disconnect();
|
|
|
|
fulfill(success);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
observer.observe(document, {
|
|
|
|
childList: true,
|
|
|
|
subtree: true,
|
2020-05-07 10:54:55 +00:00
|
|
|
attributes: true,
|
2019-01-16 01:21:23 +00:00
|
|
|
});
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-05-19 07:09:31 +00:00
|
|
|
async function pollRaf(): Promise<unknown> {
|
2019-01-16 01:21:23 +00:00
|
|
|
let fulfill;
|
2020-05-07 10:54:55 +00:00
|
|
|
const result = new Promise((x) => (fulfill = x));
|
2020-05-19 07:09:31 +00:00
|
|
|
await onRaf();
|
2019-01-16 01:21:23 +00:00
|
|
|
return result;
|
|
|
|
|
2020-05-19 07:09:31 +00:00
|
|
|
async function onRaf(): Promise<unknown> {
|
2019-01-16 01:21:23 +00:00
|
|
|
if (timedOut) {
|
|
|
|
fulfill();
|
|
|
|
return;
|
|
|
|
}
|
2020-05-19 07:09:31 +00:00
|
|
|
const success = await predicate(...args);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (success) fulfill(success);
|
|
|
|
else requestAnimationFrame(onRaf);
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-19 07:09:31 +00:00
|
|
|
async function pollInterval(pollInterval: number): Promise<unknown> {
|
2019-01-16 01:21:23 +00:00
|
|
|
let fulfill;
|
2020-05-07 10:54:55 +00:00
|
|
|
const result = new Promise((x) => (fulfill = x));
|
2020-05-19 07:09:31 +00:00
|
|
|
await onTimeout();
|
2019-01-16 01:21:23 +00:00
|
|
|
return result;
|
|
|
|
|
2020-05-19 07:09:31 +00:00
|
|
|
async function onTimeout(): Promise<unknown> {
|
2019-01-16 01:21:23 +00:00
|
|
|
if (timedOut) {
|
|
|
|
fulfill();
|
|
|
|
return;
|
|
|
|
}
|
2020-05-19 07:09:31 +00:00
|
|
|
const success = await predicate(...args);
|
2020-05-07 10:54:55 +00:00
|
|
|
if (success) fulfill(success);
|
|
|
|
else setTimeout(onTimeout, pollInterval);
|
2019-01-16 01:21:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|