mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
61 lines
670 B
Markdown
61 lines
670 B
Markdown
|
---
|
||
|
sidebar_label: Locator.scroll
|
||
|
---
|
||
|
|
||
|
# Locator.scroll() method
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Locator {
|
||
|
scroll<ElementType extends Element>(
|
||
|
this: Locator<ElementType>,
|
||
|
options?: Readonly<LocatorScrollOptions>
|
||
|
): Promise<void>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
<table><thead><tr><th>
|
||
|
|
||
|
Parameter
|
||
|
|
||
|
</th><th>
|
||
|
|
||
|
Type
|
||
|
|
||
|
</th><th>
|
||
|
|
||
|
Description
|
||
|
|
||
|
</th></tr></thead>
|
||
|
<tbody><tr><td>
|
||
|
|
||
|
this
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
[Locator](./puppeteer.locator.md)<ElementType>
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
</td></tr>
|
||
|
<tr><td>
|
||
|
|
||
|
options
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
Readonly<[LocatorScrollOptions](./puppeteer.locatorscrolloptions.md)>
|
||
|
|
||
|
</td><td>
|
||
|
|
||
|
_(Optional)_
|
||
|
|
||
|
</td></tr>
|
||
|
</tbody></table>
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<void>
|