puppeteer/docs/api/puppeteer.locator.map.md

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)&lt;T, To&gt; | |
**Returns:**
[Locator](./puppeteer.locator.md)&lt;To&gt;