Skip to content

Commit

Permalink
fix: wrong description of options for the moveTo command
Browse files Browse the repository at this point in the history
  • Loading branch information
sipayRT committed Aug 19, 2024
1 parent 0fe7751 commit 83f92fe
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 16 deletions.
27 changes: 19 additions & 8 deletions docs/commands/element/moveTo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,23 @@ await browser.$(selector).moveTo({ xOffset, yOffset });
## Параметры команды {#parameters}

<table>
<thead>
<tr><td>**Имя**</td><td>**Тип**</td><td>**Описание**</td></tr>
</thead>
<tbody>
<tr><td>xOffset</td><td>Number</td><td>Смещение по оси X. Задается относительно верхнего левого угла элемента. Если не указано, мышь переместится в середину элемента.</td></tr>
<tr><td>yOffset</td><td>Number</td><td>Смещение по оси Y. Задается относительно верхнего левого угла элемента. Если не указано, мышь переместится в середину элемента.</td></tr>

</tbody>
<thead>
<tr>
<td>**Имя**</td>
<td>**Тип**</td>
<td>**Описание**</td>
</tr>
</thead>
<tbody>
<tr>
<td>xOffset</td>
<td>Number</td>
<td>Смещение по оси X. Задается относительно центра элемента. Если не указано, мышь переместится в середину элемента.</td>
</tr>
<tr>
<td>yOffset</td>
<td>Number</td>
<td>Смещение по оси Y. Задается относительно центра элемента. Если не указано, мышь переместится в середину элемента.</td>
</tr>
</tbody>
</table>
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,25 @@ await browser.$(selector).moveTo({ xOffset, yOffset });
## Command Parameters {#parameters}

<table>
<thead>
<tr><td>**Name**</td><td>**Type**</td><td>**Description**</td></tr>
</thead>
<tbody>
<tr><td>xOffset</td><td>Number</td><td>The X-axis offset relative to the top-left corner of the element. If not specified, the mouse will move to the middle of the element.</td></tr>
<tr><td>yOffset</td><td>Number</td><td>The Y-axis offset relative to the top-left corner of the element. If not specified, the mouse will move to the middle of the element.</td></tr>

</tbody>
<thead>
<tr>
<td>**Name**</td>
<td>**Type**</td>
<td>**Description**</td>
</tr>
</thead>
<tbody>
<tr>
<td>xOffset</td>
<td>Number</td>
<td>The X-axis offset relative to the middle of the element. If not specified, the mouse will move to the middle of the element.</td>
</tr>
<tr>
<td>yOffset</td>
<td>Number</td>
<td>The Y-axis offset relative to the middle of the element. If not specified, the mouse will move to the middle of the element.</td>
</tr>
</tbody>
</table>

## References
Expand Down

0 comments on commit 83f92fe

Please sign in to comment.