puppeteer/docs/api/puppeteer.elementhandle.waitforselector.md

63 lines
1.9 KiB
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: ElementHandle.waitForSelector
---
# ElementHandle.waitForSelector() method
Wait for an element matching the given selector to appear in the current element.
2022-07-05 13:41:43 +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
**Signature:**
```typescript
class ElementHandle {
waitForSelector<Selector extends string>(
2022-07-05 13:41:43 +00:00
selector: Selector,
options?: Exclude<WaitForSelectorOptions, 'root'>
): Promise<ElementHandle<NodeFor<Selector>> | null>;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
| Parameter | Type | Description |
| --------- | -------------------------------------------------------------------------------------- | ----------------------------------------------------------- |
| selector | Selector | The selector to query and wait for. |
| options | Exclude&lt;[WaitForSelectorOptions](./puppeteer.waitforselectoroptions.md), 'root'&gt; | <i>(Optional)</i> Options for customizing waiting behavior. |
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;[ElementHandle](./puppeteer.elementhandle.md)&lt;[NodeFor](./puppeteer.nodefor.md)&lt;Selector&gt;&gt; \| null&gt;
2022-07-05 13:41:43 +00:00
An element matching the given selector.
2022-07-05 13:41:43 +00:00
## Exceptions
2022-07-05 13:41:43 +00:00
Throws if an element matching the given selector doesn't appear.
2022-07-05 13:41:43 +00:00
## Example
2022-07-05 13:41:43 +00:00
```ts
const puppeteer = require('puppeteer');
2022-07-05 13:41:43 +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();
})();
```