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 ) > [ElementHandle ](./puppeteer.elementhandle.md ) > [$eval ](./puppeteer.elementhandle._eval.md )
## ElementHandle.$eval() method
2020-06-22 15:21:57 +00:00
This method runs `document.querySelector` within the element and passes it as the first argument to `pageFunction` <!-- --> . If there's no element matching `selector` <!-- --> , the method throws an error.
If `pageFunction` returns a Promise, then `frame.$eval` would wait for the promise to resolve and return its value.
2020-06-04 14:56:45 +00:00
< b > Signature:< / b >
```typescript
2020-07-02 09:09:34 +00:00
$eval< ReturnType > (selector: string, pageFunction: (element: Element, ...args: unknown[]) => ReturnType | Promise< ReturnType > , ...args: SerializableOrJSHandle[]): Promise< WrapElementHandle < ReturnType > >;
2020-06-04 14:56:45 +00:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| selector | string | |
2020-07-02 09:09:34 +00:00
| pageFunction | (element: Element, ...args: unknown\[\]) => ReturnType \| Promise< ReturnType> | |
2020-06-25 12:38:01 +00:00
| args | [SerializableOrJSHandle ](./puppeteer.serializableorjshandle.md )<!-- --> \[\] | |
2020-06-04 14:56:45 +00:00
< b > Returns:< / b >
2020-07-02 09:09:34 +00:00
Promise< [WrapElementHandle](./puppeteer.wrapelementhandle.md)<!-- --> < ReturnType> >
2020-06-04 14:56:45 +00:00
2020-06-22 15:21:57 +00:00
## Example
```js
const tweetHandle = await page.$('.tweet');
expect(await tweetHandle.$eval('.like', node => node.innerText)).toBe('100');
expect(await tweetHandle.$eval('.retweets', node => node.innerText)).toBe('10');
```