2023-07-27 07:23:28 +00:00
|
|
|
---
|
|
|
|
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
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<table><thead><tr><th>
|
2023-07-27 07:23:28 +00:00
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
func
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
() => [Awaitable](./puppeteer.awaitable.md)<Ret>
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2023-07-27 07:23:28 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
[Locator](./puppeteer.locator.md)<Ret>
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
Locators API is experimental and we will not follow semver for breaking change in the Locators API.
|