2020-06-04 14:56:45 +00:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home ](./index.md ) > [puppeteer ](./puppeteer.md ) > [JSHandle ](./puppeteer.jshandle.md ) > [evaluate ](./puppeteer.jshandle.evaluate.md )
## JSHandle.evaluate() method
2020-06-22 15:21:57 +00:00
This method passes this handle as the first argument to `pageFunction` <!-- --> . If `pageFunction` returns a Promise, then `handle.evaluate` would wait for the promise to resolve and return its value.
2020-06-04 14:56:45 +00:00
< b > Signature:< / b >
```typescript
evaluate< ReturnType extends any > (pageFunction: Function | string, ...args: unknown[]): Promise< ReturnType > ;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| pageFunction | Function \| string | |
| args | unknown\[\] | |
< b > Returns:< / b >
Promise< ReturnType>
2020-06-22 15:21:57 +00:00
## Example
```js
const tweetHandle = await page.$('.tweet .retweets');
expect(await tweetHandle.evaluate(node => node.innerText)).toBe('10');
```