puppeteer/docs/api/puppeteer.elementhandle.waitforselector_1.md
2022-07-01 11:52:39 +00:00

879 B

sidebar_label
ElementHandle.waitForSelector_1

ElementHandle.waitForSelector() method

Signature:

class ElementHandle {
  waitForSelector(
    selector: string,
    options?: Exclude<WaitForSelectorOptions, 'root'>
  ): Promise<ElementHandle | null>;
}

Parameters

Parameter Type Description
selector string
options Exclude<WaitForSelectorOptions, 'root'> (Optional)

Returns:

Promise<ElementHandle | null>