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.querySelectorAll` 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-06-25 12:38:01 +00:00
$$eval< ReturnType extends any > (selector: string, pageFunction: EvaluateFn | string, ...args: SerializableOrJSHandle[]): Promise< ReturnType > ;
2020-06-04 14:56:45 +00:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| selector | string | |
2020-06-25 12:38:01 +00:00
| pageFunction | [EvaluateFn ](./puppeteer.evaluatefn.md ) \| string | |
| args | [SerializableOrJSHandle ](./puppeteer.serializableorjshandle.md )<!-- --> \[\] | |
2020-06-04 14:56:45 +00:00
< b > Returns:< / b >
Promise< ReturnType>
2020-06-22 15:21:57 +00:00
## Example 1
```html
< div class = "feed" >
< div class = "tweet" > Hello!< / div >
< div class = "tweet" > Hi!< / div >
< / div >
```
## Example 2
```js
const feedHandle = await page.$('.feed');
expect(await feedHandle.$$eval('.tweet', nodes => nodes.map(n => n.innerText)))
.toEqual(['Hello!', 'Hi!']);
```