From 066f1ec80d9699f884806493d33bc138eacd17b4 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 | 33 ++++++++++++++----- .../current/commands/element/moveTo.mdx | 33 ++++++++++++++----- 2 files changed, 50 insertions(+), 16 deletions(-) diff --git a/docs/commands/element/moveTo.mdx b/docs/commands/element/moveTo.mdx index c5aaec2..d8616de 100644 --- a/docs/commands/element/moveTo.mdx +++ b/docs/commands/element/moveTo.mdx @@ -17,12 +17,29 @@ 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..5b1c8b9 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,31 @@ 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**
xOffsetNumber + The X-axis offset relative to the middle of the element. If not specified, the mouse + will move to the middle of the element. +
yOffsetNumber + The Y-axis offset relative to the middle of the element. If not specified, the mouse + will move to the middle of the element. +
## References