mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
93e9acc410
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
1.3 KiB
1.3 KiB
sidebar_label |
---|
WebWorker.evaluateHandle |
WebWorker.evaluateHandle() method
Evaluates a given function in the worker.
Signature:
class WebWorker {
evaluateHandle<
Params extends unknown[],
Func extends EvaluateFunc<Params> = EvaluateFunc<Params>,
>(
func: Func | string,
...args: Params
): Promise<HandleFor<Awaited<ReturnType<Func>>>>;
}
Parameters
Parameter |
Type |
Description |
---|---|---|
func |
Func | string |
Function to be evaluated. |
args |
Params |
Arguments to pass into |
Promise<HandleFor<Awaited<ReturnType<Func>>>>
A handle to the return value of func
.
Remarks
If the given function returns a promise, evaluate will wait for the promise to resolve.
In general, you should use evaluateHandle if evaluate cannot serialize the return value properly or you need a mutable handle to the return object.