2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: JSHandle.evaluateHandle
|
|
|
|
---
|
|
|
|
|
|
|
|
# JSHandle.evaluateHandle() method
|
|
|
|
|
2022-08-16 11:58:16 +00:00
|
|
|
Evaluates the given function with the current handle as its first argument.
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class JSHandle {
|
2023-08-28 13:34:38 +00:00
|
|
|
abstract evaluateHandle<
|
2022-08-06 14:49:20 +00:00
|
|
|
Params extends unknown[],
|
2023-07-18 10:40:13 +00:00
|
|
|
Func extends EvaluateFuncWith<T, Params> = EvaluateFuncWith<T, Params>,
|
2022-08-06 14:49:20 +00:00
|
|
|
>(
|
|
|
|
pageFunction: Func | string,
|
|
|
|
...args: Params
|
|
|
|
): Promise<HandleFor<Awaited<ReturnType<Func>>>>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| ------------ | -------------- | ----------- |
|
|
|
|
| pageFunction | Func \| string | |
|
|
|
|
| args | Params | |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[HandleFor](./puppeteer.handlefor.md)<Awaited<ReturnType<Func>>>>
|