--- 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. #### Signature: ```typescript class Frame { waitForSelector( selector: Selector, options?: WaitForSelectorOptions ): Promise> | null>; } ``` ## Parameters | Parameter | Type | Description | | --------- | --------------------------------------------------------------- | ------------------------------------------------------ | | selector | Selector | The selector to query and wait for. | | options | [WaitForSelectorOptions](./puppeteer.waitforselectoroptions.md) | _(Optional)_ Options for customizing waiting behavior. | **Returns:** Promise<[ElementHandle](./puppeteer.elementhandle.md)<[NodeFor](./puppeteer.nodefor.md)<Selector>> \| null> An element matching the given selector. ## Exceptions Throws if an element matching the given selector doesn't appear. ## Example ```ts import puppeteer from '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(); })(); ```