2023-06-02 17:46:10 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Frame.locator
|
|
|
|
---
|
|
|
|
|
|
|
|
# Frame.locator() method
|
|
|
|
|
2023-07-27 07:23:28 +00:00
|
|
|
Creates a locator for the provided selector. See [Locator](./puppeteer.locator.md) for details and supported actions.
|
2023-06-02 17:46:10 +00:00
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Frame {
|
2023-07-19 15:39:38 +00:00
|
|
|
locator<Selector extends string>(
|
|
|
|
selector: Selector
|
|
|
|
): Locator<NodeFor<Selector>>;
|
2023-06-02 17:46:10 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2023-07-19 15:39:38 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | -------- | ----------- |
|
|
|
|
| selector | Selector | |
|
2023-06-02 17:46:10 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
2023-07-19 15:39:38 +00:00
|
|
|
[Locator](./puppeteer.locator.md)<[NodeFor](./puppeteer.nodefor.md)<Selector>>
|
2023-06-02 17:46:10 +00:00
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
Locators API is experimental and we will not follow semver for breaking change in the Locators API.
|