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
2020-06-25 12:38:01 +00:00
evaluate< T extends EvaluateFn > (pageFunction: T | string, ...args: SerializableOrJSHandle[]): Promise< EvaluateFnReturnType < T > >;
2020-06-04 14:56:45 +00:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2020-06-25 12:38:01 +00:00
| pageFunction | T \| string | |
| args | [SerializableOrJSHandle ](./puppeteer.serializableorjshandle.md )<!-- --> \[\] | |
2020-06-04 14:56:45 +00:00
< b > Returns:< / b >
2020-06-25 12:38:01 +00:00
Promise< [EvaluateFnReturnType](./puppeteer.evaluatefnreturntype.md)<!-- --> < T> >
2020-06-04 14:56:45 +00:00
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');
```