puppeteer/docs/api/puppeteer.frame.waitforselector.md

63 lines
1.7 KiB
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Frame.waitForSelector
---
# Frame.waitForSelector() method
Waits for an element matching the given selector to appear in the frame.
This method works across navigations.
2022-07-05 13:41:43 +00:00
**Signature:**
```typescript
class Frame {
waitForSelector<Selector extends string>(
2022-07-05 13:41:43 +00:00
selector: Selector,
options?: WaitForSelectorOptions
): 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 | [WaitForSelectorOptions](./puppeteer.waitforselectoroptions.md) | <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
```ts
const puppeteer = require('puppeteer');
(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();
})();
```