Frame.locator() method
locator(): Locator<NodeFor<Selector>>
Creates a locator for the provided selector. See Locator for details and supported actions.
Signature
class Frame {
  locator<Selector extends string>(
    selector: Selector,
  ): Locator<NodeFor<Selector>>;
}
Parameters
| Parameter | Type | Description | 
|---|---|---|
| selector | Selector | selector to query the page for. CSS selectors can be passed as-is and a Puppeteer-specific selector syntax allows querying by text, a11y role and name, and xpath and combining these queries across shadow roots. Alternatively, you can specify the selector type using a prefix. | 
Returns:
locator(): Locator<Ret>
Creates a locator for the provided function. See Locator for details and supported actions.
Signature
class Frame {
  locator<Ret>(func: () => Awaitable<Ret>): Locator<Ret>;
}
Parameters
| Parameter | Type | Description | 
|---|---|---|
| func | () => Awaitable<Ret> | 
Returns:
Locator<Ret>