mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
30 lines
744 B
Markdown
30 lines
744 B
Markdown
|
---
|
||
|
sidebar_label: Page.locator_1
|
||
|
---
|
||
|
|
||
|
# Page.locator() method
|
||
|
|
||
|
Creates a locator for the provided function. See [Locator](./puppeteer.locator.md) for details and supported actions.
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Page {
|
||
|
locator<Ret>(func: () => Awaitable<Ret>): Locator<Ret>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | --------------------------------------------------------- | ----------- |
|
||
|
| func | () => [Awaitable](./puppeteer.awaitable.md)<Ret> | |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
[Locator](./puppeteer.locator.md)<Ret>
|
||
|
|
||
|
## Remarks
|
||
|
|
||
|
Locators API is experimental and we will not follow semver for breaking change in the Locators API.
|