This commit is contained in:
g1879 2021-02-07 14:10:48 +08:00
parent 3c6fbf268a
commit 066caf2f23
3 changed files with 25 additions and 12 deletions

View File

@ -734,8 +734,9 @@ Element operation is unique to d mode. Calling the following method will automat
```python
element.click(by_js) # Click the element, you can choose whether to click with js
element.input(value) # input text
element.run_script(js) # Run JavaScript script on the element
element.click_at(x, y, by_js) # Click this element with offset, relative to the upper left corner coordinate. Click the midpoint of the element when the x or y value is not passed in, and you can choose whether to click with js
element.input(value, clear) # Input text or key combination, and input the key combination in tuple format. The clear parameter is whether to clear the element before input.
element.run_script(js, *args) # Run JavaScript script on the element
element.submit() # Submit
element.clear() # Clear the element
element.screenshot(path, filename) # Take a screenshot of the element
@ -2160,20 +2161,31 @@ Click on the element. If it is unsuccessful, click in js mode. You can specify w
Parameter Description:
- by_js: bool - whether to click with js
- by_js: bool - whether to click with js
Returns: bool
### click_at()
### input()
Enter text and return whether it is successful.
Click this element with offset, relative to the upper left corner coordinate. Click the midpoint of the element when the
x or y value is not passed in, and you can choose whether to click with js.
Parameter Description:
- value: str - text value
- clear: bool - whether to clear the text box before typing
- x: int - The x-axis offset relative to the upper left corner of the element
- y: int - The y-axis offset relative to the upper left corner of the element
- by_js: bool - whether to click with js
Returns: None
### input()
Enter text or key combination and return whether it is successful.
Parameter Description:
- value: Union[str, tuple] - Text value or key combination
- clear: bool - whether to clear the text box before typing
Returns: bool

View File

@ -701,8 +701,9 @@ element.is_displayed() # 返回元素是否可见
```python
element.click(by_js) # 点击元素,可选择是否用 js 方式点击
element.input(value) # 输入文本
element.run_script(js) # 对元素运行 JavaScript 脚本
element.click_at(x, y, by_js) # 带偏移量点击本元素,相对于左上角坐标。不传入 x 或 y 值时点击元素中点,可选择是否用 js 方式点击
element.input(value, clear) # 输入文本或组合键,组合键用 tuple 格式输入。clear 参数为输入前是否清空元素。
element.run_script(js, *args) # 对元素运行 JavaScript 脚本
element.submit() # 提交
element.clear() # 清空元素
element.screenshot(path, filename) # 对元素截图

View File

@ -8,7 +8,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
setup(
name="DrissionPage",
version="1.8.1",
version="1.9.0",
author="g1879",
author_email="g1879@qq.com",
description="A module that integrates selenium and requests session, encapsulates common page operations.",