mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
26 lines
505 B
Markdown
26 lines
505 B
Markdown
|
---
|
||
|
sidebar_label: Locator.map
|
||
|
---
|
||
|
|
||
|
# Locator.map() method
|
||
|
|
||
|
Maps the locator using the provided mapper.
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Locator {
|
||
|
map<To>(mapper: Mapper<T, To>): Locator<To>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | -------------------------------------------- | ----------- |
|
||
|
| mapper | [Mapper](./puppeteer.mapper.md)<T, To> | |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
[Locator](./puppeteer.locator.md)<To>
|