2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Frame.evaluateHandle
|
|
|
|
---
|
|
|
|
|
|
|
|
# Frame.evaluateHandle() method
|
|
|
|
|
2022-08-10 21:34:29 +00:00
|
|
|
Behaves identically to [Page.evaluateHandle()](./puppeteer.page.evaluatehandle.md) except it's run within the context of this frame.
|
|
|
|
|
2022-07-05 13:41:43 +00:00
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Frame {
|
|
|
|
evaluateHandle<
|
|
|
|
Params extends unknown[],
|
|
|
|
Func extends EvaluateFunc<Params> = EvaluateFunc<Params>
|
|
|
|
>(
|
|
|
|
pageFunction: Func | string,
|
|
|
|
...args: Params
|
|
|
|
): Promise<HandleFor<Awaited<ReturnType<Func>>>>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-08-16 06:22:45 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| ------------ | -------------- | ----------- |
|
|
|
|
| pageFunction | Func \| string | |
|
|
|
|
| args | Params | |
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[HandleFor](./puppeteer.handlefor.md)<Awaited<ReturnType<Func>>>>
|