From 83f92fe96cdad6ea9f398ad00447e7254713e223 Mon Sep 17 00:00:00 2001 From: sipayrt Date: Mon, 19 Aug 2024 12:13:48 +0300 Subject: [PATCH] fix: wrong description of options for the moveTo command --- docs/commands/element/moveTo.mdx | 27 +++++++++++++------ .../current/commands/element/moveTo.mdx | 27 +++++++++++++------ 2 files changed, 38 insertions(+), 16 deletions(-) diff --git a/docs/commands/element/moveTo.mdx b/docs/commands/element/moveTo.mdx index c5aaec2..1536f0f 100644 --- a/docs/commands/element/moveTo.mdx +++ b/docs/commands/element/moveTo.mdx @@ -17,12 +17,23 @@ await browser.$(selector).moveTo({ xOffset, yOffset }); ## Параметры команды {#parameters} - - - - - - - - + + + + + + + + + + + + + + + + + + +
**Имя****Тип****Описание**
xOffsetNumberСмещение по оси X. Задается относительно верхнего левого угла элемента. Если не указано, мышь переместится в середину элемента.
yOffsetNumberСмещение по оси Y. Задается относительно верхнего левого угла элемента. Если не указано, мышь переместится в середину элемента.
**Имя****Тип****Описание**
xOffsetNumberСмещение по оси X. Задается относительно центра элемента. Если не указано, мышь переместится в середину элемента.
yOffsetNumberСмещение по оси Y. Задается относительно центра элемента. Если не указано, мышь переместится в середину элемента.
diff --git a/i18n/en/docusaurus-plugin-content-docs/current/commands/element/moveTo.mdx b/i18n/en/docusaurus-plugin-content-docs/current/commands/element/moveTo.mdx index 165d22e..01b11a4 100644 --- a/i18n/en/docusaurus-plugin-content-docs/current/commands/element/moveTo.mdx +++ b/i18n/en/docusaurus-plugin-content-docs/current/commands/element/moveTo.mdx @@ -17,14 +17,25 @@ await browser.$(selector).moveTo({ xOffset, yOffset }); ## Command Parameters {#parameters} - - - - - - - - + + + + + + + + + + + + + + + + + + +
**Name****Type****Description**
xOffsetNumberThe 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.
yOffsetNumberThe 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.
**Name****Type****Description**
xOffsetNumberThe X-axis offset relative to the middle of the element. If not specified, the mouse will move to the middle of the element.
yOffsetNumberThe Y-axis offset relative to the middle of the element. If not specified, the mouse will move to the middle of the element.
## References