From 296d6adb1dddf731bf2e8f9a26462305e9fbe460 Mon Sep 17 00:00:00 2001 From: g1879 Date: Mon, 27 Jul 2020 17:11:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.en.md | 19 +++++++++++++++++-- README.zh-cn.md | 19 +++++++++++++++++-- 2 files changed, 34 insertions(+), 4 deletions(-) diff --git a/README.en.md b/README.en.md index ee6b2cc..9bc7310 100644 --- a/README.en.md +++ b/README.en.md @@ -1245,15 +1245,30 @@ Parameter Description: - attr - parameter name - value - Parameter value +### drag + +​ drag(x: int, y: int, speed: int = 40, shake: bool = True) -> bool + +​ Drag the current element a certain distance, and return whether the drag is successful. + +​ Parameter Description: + +- x - Drag distance in x direction +- y - Drag distance in y direction +- speed - Drag speed +- shake - Random jitter + ### drag_to -​ drag_to( ele_or_loc: Union[tuple, WebElement, DrissionElement]) -> bool +​ drag_to(ele_or_loc: Union[tuple, WebElement, DrissionElement], speed: int = 40, shake: bool = True) -> bool: ​ Drag the current element, the target is another element or coordinate tuple, and return whether the drag is successful. ​ Parameter Description: -- ele_or_loc - Another element or relative current position +- ele_or_loc - Another element or relative current position. The coordinates are the coordinates of the midpoint of the element. +- speed - Drag speed +- shake - Random jitter ### hover diff --git a/README.zh-cn.md b/README.zh-cn.md index 72e082b..eabfb2c 100644 --- a/README.zh-cn.md +++ b/README.zh-cn.md @@ -1244,15 +1244,30 @@ driver模式的元素对象,包装了一个WebElement对象,并封装了常 - attr - 参数名 - value - 参数值 +### drag + +​ drag(x: int, y: int, speed: int = 40, shake: bool = True) -> bool + +​ 拖拽当前元素一段距离,返回是否拖拽成功。 + +​ 参数说明: + +- x - 拖拽x方向距离 +- y - 拖拽y方向距离 +- speed - 拖拽速度 +- shake - 是否随机抖动 + ### drag_to -​ drag_to( ele_or_loc: Union[tuple, WebElement, DrissionElement]) -> bool +​ drag_to(ele_or_loc: Union[tuple, WebElement, DrissionElement], speed: int = 40, shake: bool = True) -> bool: ​ 拖拽当前元素,目标为另一个元素或坐标元组,返回是否拖拽成功。 ​ 参数说明: -- ele_or_loc - 另一个元素或相对当前位置 +- ele_or_loc - 另一个元素或相对当前位置,坐标为元素中点坐标。 +- speed - 拖拽速度 +- shake - 是否随机抖动 ### hover