2022-08-16 11:58:16 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Frame.evaluate
|
|
|
|
---
|
|
|
|
|
|
|
|
# Frame.evaluate() method
|
|
|
|
|
|
|
|
Behaves identically to [Page.evaluate()](./puppeteer.page.evaluate.md) except it's run within the the context of this frame.
|
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-16 11:58:16 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Frame {
|
|
|
|
evaluate<
|
|
|
|
Params extends unknown[],
|
2023-07-18 10:40:13 +00:00
|
|
|
Func extends EvaluateFunc<Params> = EvaluateFunc<Params>,
|
2022-08-16 11:58:16 +00:00
|
|
|
>(
|
|
|
|
pageFunction: Func | string,
|
|
|
|
...args: Params
|
|
|
|
): Promise<Awaited<ReturnType<Func>>>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| ------------ | -------------- | ----------- |
|
|
|
|
| pageFunction | Func \| string | |
|
|
|
|
| args | Params | |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<Awaited<ReturnType<Func>>>
|