mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
1.9.0
This commit is contained in:
parent
3c6fbf268a
commit
066caf2f23
30
README.en.md
30
README.en.md
@ -734,8 +734,9 @@ Element operation is unique to d mode. Calling the following method will automat
|
|||||||
|
|
||||||
```python
|
```python
|
||||||
element.click(by_js) # Click the element, you can choose whether to click with js
|
element.click(by_js) # Click the element, you can choose whether to click with js
|
||||||
element.input(value) # input text
|
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.run_script(js) # Run JavaScript script on the element
|
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.submit() # Submit
|
||||||
element.clear() # Clear the element
|
element.clear() # Clear the element
|
||||||
element.screenshot(path, filename) # Take a screenshot of 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:
|
Parameter Description:
|
||||||
|
|
||||||
- by_js: bool - whether to click with js
|
- by_js: bool - whether to click with js
|
||||||
|
|
||||||
Returns: bool
|
Returns: bool
|
||||||
|
|
||||||
|
### click_at()
|
||||||
|
|
||||||
|
Click this element with offset, relative to the upper left corner coordinate. Click the midpoint of the element when the
|
||||||
### input()
|
x or y value is not passed in, and you can choose whether to click with js.
|
||||||
|
|
||||||
Enter text and return whether it is successful.
|
|
||||||
|
|
||||||
Parameter Description:
|
Parameter Description:
|
||||||
|
|
||||||
- value: str - text value
|
- x: int - The x-axis offset relative to the upper left corner of the element
|
||||||
- clear: bool - whether to clear the text box before typing
|
- 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
|
Returns: bool
|
||||||
|
|
||||||
|
@ -701,8 +701,9 @@ element.is_displayed() # 返回元素是否可见
|
|||||||
|
|
||||||
```python
|
```python
|
||||||
element.click(by_js) # 点击元素,可选择是否用 js 方式点击
|
element.click(by_js) # 点击元素,可选择是否用 js 方式点击
|
||||||
element.input(value) # 输入文本
|
element.click_at(x, y, by_js) # 带偏移量点击本元素,相对于左上角坐标。不传入 x 或 y 值时点击元素中点,可选择是否用 js 方式点击
|
||||||
element.run_script(js) # 对元素运行 JavaScript 脚本
|
element.input(value, clear) # 输入文本或组合键,组合键用 tuple 格式输入。clear 参数为输入前是否清空元素。
|
||||||
|
element.run_script(js, *args) # 对元素运行 JavaScript 脚本
|
||||||
element.submit() # 提交
|
element.submit() # 提交
|
||||||
element.clear() # 清空元素
|
element.clear() # 清空元素
|
||||||
element.screenshot(path, filename) # 对元素截图
|
element.screenshot(path, filename) # 对元素截图
|
||||||
|
2
setup.py
2
setup.py
@ -8,7 +8,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="DrissionPage",
|
name="DrissionPage",
|
||||||
version="1.8.1",
|
version="1.9.0",
|
||||||
author="g1879",
|
author="g1879",
|
||||||
author_email="g1879@qq.com",
|
author_email="g1879@qq.com",
|
||||||
description="A module that integrates selenium and requests session, encapsulates common page operations.",
|
description="A module that integrates selenium and requests session, encapsulates common page operations.",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user