2022-08-06 14:49:20 +00:00
|
|
|
---
|
2023-04-13 12:26:52 +00:00
|
|
|
sidebar_label: ElementHandle.scrollIntoView
|
2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
|
2023-04-13 12:26:52 +00:00
|
|
|
# ElementHandle.scrollIntoView() method
|
|
|
|
|
|
|
|
Scrolls the element into view using either the automation protocol client or by calling element.scrollIntoView.
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class ElementHandle {
|
2023-04-13 12:26:52 +00:00
|
|
|
scrollIntoView(this: ElementHandle<Element>): Promise<void>;
|
2022-08-06 14:49:20 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
<table><thead><tr><th>
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
this
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
[ElementHandle](./puppeteer.elementhandle.md)<Element>
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2022-08-06 14:49:20 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|