puppeteer/new-docs/puppeteer.protocol.dom.movetorequest.md
2020-07-13 14:01:35 +01:00

21 lines
1.0 KiB
Markdown

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Protocol](./puppeteer.protocol.md) &gt; [DOM](./puppeteer.protocol.dom.md) &gt; [MoveToRequest](./puppeteer.protocol.dom.movetorequest.md)
## Protocol.DOM.MoveToRequest interface
<b>Signature:</b>
```typescript
export interface MoveToRequest
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [insertBeforeNodeId](./puppeteer.protocol.dom.movetorequest.insertbeforenodeid.md) | [NodeId](./puppeteer.protocol.dom.nodeid.md) | Drop node before this one (if absent, the moved node becomes the last child of <code>targetNodeId</code>). |
| [nodeId](./puppeteer.protocol.dom.movetorequest.nodeid.md) | [NodeId](./puppeteer.protocol.dom.nodeid.md) | Id of the node to move. |
| [targetNodeId](./puppeteer.protocol.dom.movetorequest.targetnodeid.md) | [NodeId](./puppeteer.protocol.dom.nodeid.md) | Id of the element to drop the moved node into. |