2022-07-05 13:41:43 +00:00
---
sidebar_label: ElementHandle.waitForSelector
---
# ElementHandle.waitForSelector() method
2022-08-10 21:34:29 +00:00
Wait for an element matching the given selector to appear in the current element.
2022-07-05 13:41:43 +00:00
2022-08-10 21:34:29 +00:00
Unlike [Frame.waitForSelector() ](./puppeteer.frame.waitforselector.md ), this method does not work across navigations or if the element is detached from DOM.
2022-07-05 13:41:43 +00:00
2022-10-24 07:07:05 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class ElementHandle {
2022-07-06 07:05:37 +00:00
waitForSelector< Selector extends string > (
2022-07-05 13:41:43 +00:00
selector: Selector,
2022-08-26 10:55:30 +00:00
options?: WaitForSelectorOptions
2022-07-06 07:05:37 +00:00
): Promise< ElementHandle < NodeFor < Selector > > | null>;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
2024-03-20 15:03:14 +00:00
< table > < thead > < tr > < th >
2022-07-05 13:41:43 +00:00
2024-03-20 15:03:14 +00:00
Parameter
< / th > < th >
Type
< / th > < th >
Description
< / th > < / tr > < / thead >
< tbody > < tr > < td >
selector
< / td > < td >
Selector
< / td > < td >
The selector to query and wait for.
< / td > < / tr >
< tr > < td >
options
< / td > < td >
[WaitForSelectorOptions ](./puppeteer.waitforselectoroptions.md )
< / td > < td >
_(Optional)_ Options for customizing waiting behavior.
< / td > < / tr >
< / tbody > < / table >
2022-07-05 13:41:43 +00:00
**Returns:**
2022-07-06 07:05:37 +00:00
Promise< [ElementHandle](./puppeteer.elementhandle.md)< [NodeFor](./puppeteer.nodefor.md)< Selector>> \| null>
2022-07-05 13:41:43 +00:00
2022-08-10 21:34:29 +00:00
An element matching the given selector.
2022-07-05 13:41:43 +00:00
2022-08-10 21:34:29 +00:00
## Exceptions
2022-07-05 13:41:43 +00:00
2022-08-10 21:34:29 +00:00
Throws if an element matching the given selector doesn't appear.
2022-07-05 13:41:43 +00:00
2022-08-10 21:34:29 +00:00
## Example
2022-07-05 13:41:43 +00:00
2022-08-10 21:34:29 +00:00
```ts
2022-12-09 12:57:39 +00:00
import puppeteer from 'puppeteer';
2022-07-05 13:41:43 +00:00
2022-08-10 21:34:29 +00:00
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
let currentURL;
page
.mainFrame()
.waitForSelector('img')
.then(() => console.log('First URL with image: ' + currentURL));
for (currentURL of [
'https://example.com',
'https://google.com',
'https://bbc.com',
]) {
await page.goto(currentURL);
}
await browser.close();
})();
```