Skip to content

Commit

Permalink
Merge pull request #30 from gemini-testing/sp.fixMoveToCommand
Browse files Browse the repository at this point in the history
fix: wrong description of options for the moveTo command
  • Loading branch information
sipayRT authored Aug 19, 2024
2 parents 0fe7751 + 066f1ec commit 64bc132
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 16 deletions.
33 changes: 25 additions & 8 deletions docs/commands/element/moveTo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,29 @@ 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,31 @@ 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 64bc132

Please sign in to comment.