mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
35 lines
701 B
Markdown
35 lines
701 B
Markdown
---
|
|
sidebar_label: Page.$$eval_1
|
|
---
|
|
|
|
# Page.$$eval() method
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
class Page {
|
|
$$eval<
|
|
Params extends unknown[],
|
|
Func extends EvaluateFunc<[Element[], ...Params]> = EvaluateFunc<
|
|
[Element[], ...Params]
|
|
>
|
|
>(
|
|
selector: string,
|
|
pageFunction: Func | string,
|
|
...args: Params
|
|
): Promise<Awaited<ReturnType<Func>>>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| ------------ | -------------- | ----------- |
|
|
| selector | string | |
|
|
| pageFunction | Func \| string | |
|
|
| args | Params | |
|
|
|
|
**Returns:**
|
|
|
|
Promise<Awaited<ReturnType<Func>>>
|