2018-05-21 21:31:11 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2018 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.
|
|
|
|
*/
|
2022-06-22 13:25:44 +00:00
|
|
|
import {Protocol} from 'devtools-protocol';
|
|
|
|
import {CDPSession} from './Connection.js';
|
|
|
|
import {ConsoleMessageType} from './ConsoleMessage.js';
|
2022-06-24 06:40:08 +00:00
|
|
|
import {EvaluateFunc, HandleFor} from './types.js';
|
2022-06-22 13:25:44 +00:00
|
|
|
import {EventEmitter} from './EventEmitter.js';
|
|
|
|
import {ExecutionContext} from './ExecutionContext.js';
|
|
|
|
import {JSHandle} from './JSHandle.js';
|
feat!: type inference for evaluation types (#8547)
This PR greatly improves the types within Puppeteer:
- **Almost everything** is auto-deduced.
- Parameters don't need to be specified in the function. They are deduced from the spread.
- Return types don't need to be specified. They are deduced from the function. (More on this below)
- Selections based on tag names correctly deduce element type, similar to TypeScript's mechanism for `getElementByTagName`.
- [**BREAKING CHANGE**] We've removed the ability to declare return types in type arguments for the following reasons:
1. Setting them will indubitably break auto-deduction.
2. You can just use `as ...` in TypeScript to coerce the correct type (given it makes sense).
- [**BREAKING CHANGE**] `waitFor` is officially gone.
To migrate to these changes, there are only four things you may need to change:
- If you set a return type using the `ReturnType` type parameter, remove it and use `as ...` and `HandleFor` (if necessary).
⛔ `evaluate<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluate(a, b) => {...}, a, b)) as ReturnType`
⛔ `evaluateHandle<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluateHandle(a, b) => {...}, a, b)) as HandleFor<ReturnType>`
- If you set any type parameters in the *parameters* of an evaluation function, remove them.
⛔ `evaluate(a: number, b: number) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
- If you set any type parameters in the method's declaration, remove them.
⛔ `evaluate<(a: number, b: number) => void>((a, b) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
2022-06-23 09:29:46 +00:00
|
|
|
import {debugError} from './util.js';
|
2022-08-22 12:03:45 +00:00
|
|
|
import {createDeferredPromise} from '../util/DeferredPromise.js';
|
2018-05-21 21:31:11 +00:00
|
|
|
|
2020-07-02 11:15:39 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2021-04-12 13:57:05 +00:00
|
|
|
export type ConsoleAPICalledCallback = (
|
2022-05-31 14:34:16 +00:00
|
|
|
eventType: ConsoleMessageType,
|
2020-05-07 10:54:55 +00:00
|
|
|
handles: JSHandle[],
|
|
|
|
trace: Protocol.Runtime.StackTrace
|
|
|
|
) => void;
|
2020-07-02 11:15:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2021-04-12 13:57:05 +00:00
|
|
|
export type ExceptionThrownCallback = (
|
2020-05-07 10:54:55 +00:00
|
|
|
details: Protocol.Runtime.ExceptionDetails
|
|
|
|
) => void;
|
2022-08-10 21:34:29 +00:00
|
|
|
|
2020-06-17 15:26:10 +00:00
|
|
|
/**
|
2022-08-10 21:34:29 +00:00
|
|
|
* This class represents a
|
2020-06-19 14:39:03 +00:00
|
|
|
* {@link https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API | WebWorker}.
|
2020-06-17 15:26:10 +00:00
|
|
|
*
|
|
|
|
* @remarks
|
2020-06-19 14:39:03 +00:00
|
|
|
* The events `workercreated` and `workerdestroyed` are emitted on the page
|
|
|
|
* object to signal the worker lifecycle.
|
2020-06-17 15:26:10 +00:00
|
|
|
*
|
|
|
|
* @example
|
2022-08-12 12:15:26 +00:00
|
|
|
*
|
2022-07-01 11:52:39 +00:00
|
|
|
* ```ts
|
2022-08-12 12:15:26 +00:00
|
|
|
* page.on('workercreated', worker =>
|
|
|
|
* console.log('Worker created: ' + worker.url())
|
|
|
|
* );
|
|
|
|
* page.on('workerdestroyed', worker =>
|
|
|
|
* console.log('Worker destroyed: ' + worker.url())
|
|
|
|
* );
|
2020-06-17 15:26:10 +00:00
|
|
|
*
|
|
|
|
* console.log('Current workers:');
|
|
|
|
* for (const worker of page.workers()) {
|
|
|
|
* console.log(' ' + worker.url());
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
*/
|
2020-05-29 11:57:54 +00:00
|
|
|
export class WebWorker extends EventEmitter {
|
2022-08-22 12:03:45 +00:00
|
|
|
#executionContext = createDeferredPromise<ExecutionContext>();
|
|
|
|
|
2022-06-13 09:16:25 +00:00
|
|
|
#client: CDPSession;
|
|
|
|
#url: string;
|
2020-04-22 14:43:45 +00:00
|
|
|
|
2020-06-17 15:26:10 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2020-05-07 10:54:55 +00:00
|
|
|
constructor(
|
|
|
|
client: CDPSession,
|
|
|
|
url: string,
|
|
|
|
consoleAPICalled: ConsoleAPICalledCallback,
|
|
|
|
exceptionThrown: ExceptionThrownCallback
|
|
|
|
) {
|
2018-05-21 21:31:11 +00:00
|
|
|
super();
|
2022-06-13 09:16:25 +00:00
|
|
|
this.#client = client;
|
|
|
|
this.#url = url;
|
2020-04-22 14:43:45 +00:00
|
|
|
|
2022-06-22 13:25:44 +00:00
|
|
|
this.#client.once('Runtime.executionContextCreated', async event => {
|
2022-08-22 12:03:45 +00:00
|
|
|
const context = new ExecutionContext(client, event.context);
|
|
|
|
this.#executionContext.resolve(context);
|
2018-05-21 21:31:11 +00:00
|
|
|
});
|
2022-08-22 12:03:45 +00:00
|
|
|
this.#client.on('Runtime.consoleAPICalled', async event => {
|
|
|
|
const context = await this.#executionContext;
|
2022-06-15 10:42:21 +00:00
|
|
|
return consoleAPICalled(
|
2020-05-07 10:54:55 +00:00
|
|
|
event.type,
|
2022-08-22 12:03:45 +00:00
|
|
|
event.args.map((object: Protocol.Runtime.RemoteObject) => {
|
|
|
|
return new JSHandle(context, this.#client, object);
|
|
|
|
}),
|
2020-05-07 10:54:55 +00:00
|
|
|
event.stackTrace
|
2022-06-15 10:42:21 +00:00
|
|
|
);
|
|
|
|
});
|
2022-06-22 13:25:44 +00:00
|
|
|
this.#client.on('Runtime.exceptionThrown', exception => {
|
2022-06-15 10:42:21 +00:00
|
|
|
return exceptionThrown(exception.exceptionDetails);
|
|
|
|
});
|
2022-08-22 12:03:45 +00:00
|
|
|
|
|
|
|
// This might fail if the target is closed before we receive all execution contexts.
|
|
|
|
this.#client.send('Runtime.enable').catch(debugError);
|
2018-05-21 21:31:11 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 15:26:10 +00:00
|
|
|
/**
|
2022-08-22 12:03:45 +00:00
|
|
|
* @deprecated Do not use directly.
|
|
|
|
*
|
|
|
|
* @returns The ExecutionContext the web worker runs in.
|
2020-06-17 15:26:10 +00:00
|
|
|
*/
|
2022-08-22 12:03:45 +00:00
|
|
|
async executionContext(): Promise<ExecutionContext> {
|
|
|
|
return this.#executionContext;
|
2018-05-21 21:31:11 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 15:26:10 +00:00
|
|
|
/**
|
2022-08-22 12:03:45 +00:00
|
|
|
* @returns The URL of this web worker.
|
2020-06-17 15:26:10 +00:00
|
|
|
*/
|
2022-08-22 12:03:45 +00:00
|
|
|
url(): string {
|
|
|
|
return this.#url;
|
2018-05-21 21:31:11 +00:00
|
|
|
}
|
2018-06-07 01:16:17 +00:00
|
|
|
|
2020-06-17 15:26:10 +00:00
|
|
|
/**
|
2020-06-19 14:39:03 +00:00
|
|
|
* If the function passed to the `worker.evaluate` returns a Promise, then
|
|
|
|
* `worker.evaluate` would wait for the promise to resolve and return its
|
|
|
|
* value. If the function passed to the `worker.evaluate` returns a
|
|
|
|
* non-serializable value, then `worker.evaluate` resolves to `undefined`.
|
|
|
|
* DevTools Protocol also supports transferring some additional values that
|
|
|
|
* are not serializable by `JSON`: `-0`, `NaN`, `Infinity`, `-Infinity`, and
|
2020-07-02 11:15:39 +00:00
|
|
|
* bigint literals.
|
|
|
|
* Shortcut for `await worker.executionContext()).evaluate(pageFunction, ...args)`.
|
2020-06-17 15:26:10 +00:00
|
|
|
*
|
|
|
|
* @param pageFunction - Function to be evaluated in the worker context.
|
|
|
|
* @param args - Arguments to pass to `pageFunction`.
|
|
|
|
* @returns Promise which resolves to the return value of `pageFunction`.
|
|
|
|
*/
|
feat!: type inference for evaluation types (#8547)
This PR greatly improves the types within Puppeteer:
- **Almost everything** is auto-deduced.
- Parameters don't need to be specified in the function. They are deduced from the spread.
- Return types don't need to be specified. They are deduced from the function. (More on this below)
- Selections based on tag names correctly deduce element type, similar to TypeScript's mechanism for `getElementByTagName`.
- [**BREAKING CHANGE**] We've removed the ability to declare return types in type arguments for the following reasons:
1. Setting them will indubitably break auto-deduction.
2. You can just use `as ...` in TypeScript to coerce the correct type (given it makes sense).
- [**BREAKING CHANGE**] `waitFor` is officially gone.
To migrate to these changes, there are only four things you may need to change:
- If you set a return type using the `ReturnType` type parameter, remove it and use `as ...` and `HandleFor` (if necessary).
⛔ `evaluate<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluate(a, b) => {...}, a, b)) as ReturnType`
⛔ `evaluateHandle<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluateHandle(a, b) => {...}, a, b)) as HandleFor<ReturnType>`
- If you set any type parameters in the *parameters* of an evaluation function, remove them.
⛔ `evaluate(a: number, b: number) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
- If you set any type parameters in the method's declaration, remove them.
⛔ `evaluate<(a: number, b: number) => void>((a, b) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
2022-06-23 09:29:46 +00:00
|
|
|
async evaluate<
|
|
|
|
Params extends unknown[],
|
|
|
|
Func extends EvaluateFunc<Params> = EvaluateFunc<Params>
|
|
|
|
>(
|
|
|
|
pageFunction: Func | string,
|
2022-06-24 06:40:08 +00:00
|
|
|
...args: Params
|
feat!: type inference for evaluation types (#8547)
This PR greatly improves the types within Puppeteer:
- **Almost everything** is auto-deduced.
- Parameters don't need to be specified in the function. They are deduced from the spread.
- Return types don't need to be specified. They are deduced from the function. (More on this below)
- Selections based on tag names correctly deduce element type, similar to TypeScript's mechanism for `getElementByTagName`.
- [**BREAKING CHANGE**] We've removed the ability to declare return types in type arguments for the following reasons:
1. Setting them will indubitably break auto-deduction.
2. You can just use `as ...` in TypeScript to coerce the correct type (given it makes sense).
- [**BREAKING CHANGE**] `waitFor` is officially gone.
To migrate to these changes, there are only four things you may need to change:
- If you set a return type using the `ReturnType` type parameter, remove it and use `as ...` and `HandleFor` (if necessary).
⛔ `evaluate<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluate(a, b) => {...}, a, b)) as ReturnType`
⛔ `evaluateHandle<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluateHandle(a, b) => {...}, a, b)) as HandleFor<ReturnType>`
- If you set any type parameters in the *parameters* of an evaluation function, remove them.
⛔ `evaluate(a: number, b: number) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
- If you set any type parameters in the method's declaration, remove them.
⛔ `evaluate<(a: number, b: number) => void>((a, b) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
2022-06-23 09:29:46 +00:00
|
|
|
): Promise<Awaited<ReturnType<Func>>> {
|
2022-08-22 12:03:45 +00:00
|
|
|
const context = await this.#executionContext;
|
|
|
|
return context.evaluate(pageFunction, ...args);
|
2018-06-07 01:16:17 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 15:26:10 +00:00
|
|
|
/**
|
2020-06-19 14:39:03 +00:00
|
|
|
* The only difference between `worker.evaluate` and `worker.evaluateHandle`
|
|
|
|
* is that `worker.evaluateHandle` returns in-page object (JSHandle). If the
|
2021-05-26 14:37:38 +00:00
|
|
|
* function passed to the `worker.evaluateHandle` returns a `Promise`, then
|
2020-06-19 14:39:03 +00:00
|
|
|
* `worker.evaluateHandle` would wait for the promise to resolve and return
|
|
|
|
* its value. Shortcut for
|
|
|
|
* `await worker.executionContext()).evaluateHandle(pageFunction, ...args)`
|
|
|
|
*
|
2020-06-17 15:26:10 +00:00
|
|
|
* @param pageFunction - Function to be evaluated in the page context.
|
|
|
|
* @param args - Arguments to pass to `pageFunction`.
|
|
|
|
* @returns Promise which resolves to the return value of `pageFunction`.
|
|
|
|
*/
|
feat!: type inference for evaluation types (#8547)
This PR greatly improves the types within Puppeteer:
- **Almost everything** is auto-deduced.
- Parameters don't need to be specified in the function. They are deduced from the spread.
- Return types don't need to be specified. They are deduced from the function. (More on this below)
- Selections based on tag names correctly deduce element type, similar to TypeScript's mechanism for `getElementByTagName`.
- [**BREAKING CHANGE**] We've removed the ability to declare return types in type arguments for the following reasons:
1. Setting them will indubitably break auto-deduction.
2. You can just use `as ...` in TypeScript to coerce the correct type (given it makes sense).
- [**BREAKING CHANGE**] `waitFor` is officially gone.
To migrate to these changes, there are only four things you may need to change:
- If you set a return type using the `ReturnType` type parameter, remove it and use `as ...` and `HandleFor` (if necessary).
⛔ `evaluate<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluate(a, b) => {...}, a, b)) as ReturnType`
⛔ `evaluateHandle<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluateHandle(a, b) => {...}, a, b)) as HandleFor<ReturnType>`
- If you set any type parameters in the *parameters* of an evaluation function, remove them.
⛔ `evaluate(a: number, b: number) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
- If you set any type parameters in the method's declaration, remove them.
⛔ `evaluate<(a: number, b: number) => void>((a, b) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
2022-06-23 09:29:46 +00:00
|
|
|
async evaluateHandle<
|
|
|
|
Params extends unknown[],
|
|
|
|
Func extends EvaluateFunc<Params> = EvaluateFunc<Params>
|
|
|
|
>(
|
|
|
|
pageFunction: Func | string,
|
2022-06-24 06:40:08 +00:00
|
|
|
...args: Params
|
feat!: type inference for evaluation types (#8547)
This PR greatly improves the types within Puppeteer:
- **Almost everything** is auto-deduced.
- Parameters don't need to be specified in the function. They are deduced from the spread.
- Return types don't need to be specified. They are deduced from the function. (More on this below)
- Selections based on tag names correctly deduce element type, similar to TypeScript's mechanism for `getElementByTagName`.
- [**BREAKING CHANGE**] We've removed the ability to declare return types in type arguments for the following reasons:
1. Setting them will indubitably break auto-deduction.
2. You can just use `as ...` in TypeScript to coerce the correct type (given it makes sense).
- [**BREAKING CHANGE**] `waitFor` is officially gone.
To migrate to these changes, there are only four things you may need to change:
- If you set a return type using the `ReturnType` type parameter, remove it and use `as ...` and `HandleFor` (if necessary).
⛔ `evaluate<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluate(a, b) => {...}, a, b)) as ReturnType`
⛔ `evaluateHandle<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluateHandle(a, b) => {...}, a, b)) as HandleFor<ReturnType>`
- If you set any type parameters in the *parameters* of an evaluation function, remove them.
⛔ `evaluate(a: number, b: number) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
- If you set any type parameters in the method's declaration, remove them.
⛔ `evaluate<(a: number, b: number) => void>((a, b) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
2022-06-23 09:29:46 +00:00
|
|
|
): Promise<HandleFor<Awaited<ReturnType<Func>>>> {
|
2022-08-22 12:03:45 +00:00
|
|
|
const context = await this.#executionContext;
|
|
|
|
return context.evaluateHandle(pageFunction, ...args);
|
2018-06-07 01:16:17 +00:00
|
|
|
}
|
2018-05-21 21:31:11 +00:00
|
|
|
}
|