input()允许接收组合键;增加click_at()方法;click()重试次数改为3次

This commit is contained in:
g1879 2021-02-07 10:40:28 +08:00
parent bb9ec1c9ad
commit 3c6fbf268a

View File

@ -324,14 +324,14 @@ class DriverElement(DrissionElement):
return None if r == 'none' else r
def click(self, by_js: bool = None, x: int = None, y: int = None) -> bool:
def click(self, by_js: bool = None) -> bool:
"""点击元素 \n
尝试点击10若都失败就改用js点击 \n
尝试点击3若都失败就改用js点击 \n
:param by_js: 是否用js点击为True时直接用js点击为False时重试失败也不会改用js
:return: 是否点击成功
"""
if not by_js:
for _ in range(10):
for _ in range(3):
try:
self.inner_ele.click()
return True
@ -345,17 +345,35 @@ class DriverElement(DrissionElement):
return False
def input(self, value: str, clear: bool = True) -> bool:
"""输入文本 \n
:param value: 文本值
def click_at(self, x: int = None, y: int = None, by_js=True) -> None:
"""带偏移量点击本元素相对于左上角坐标。不传入x或y值时点击元素中点 \n
:param x: 相对元素左上角坐标的x轴偏移量
:param y: 相对元素左上角坐标的y轴偏移量
:param by_js: 是否用js点击
:return: None
"""
x = self.location['x'] + x if x is not None else self.location['x'] + self.size['width'] // 2
y = self.location['y'] + y if y is not None else self.location['y'] + self.size['height'] // 2
if by_js:
self.page.run_script(f'document.elementFromPoint({x}, {y}).click();')
else:
from selenium.webdriver import ActionChains
ActionChains(self.page.driver).move_by_offset(x, y).click().perform()
def input(self, value: Union[str, tuple], clear: bool = True) -> bool:
"""输入文本或组合键 \n
:param value: 文本值或按键组合
:param clear: 输入前是否清空文本框
:return: 是否输入成功
"""
try:
if clear:
self.clear()
self.inner_ele.send_keys(value)
self.inner_ele.send_keys(*value)
return True
except Exception as e:
print(e)
return False