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-09-12 20:50:13 +00:00
|
|
|
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
|
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
<table><thead><tr><th>
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
pageFunction
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
Func \| string
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
<tr><td>
|
|
|
|
|
|
|
|
args
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
Params
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2022-08-06 14:49:20 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[HandleFor](./puppeteer.handlefor.md)<Awaited<ReturnType<Func>>>>
|