mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
优化input()和clear()逻辑
This commit is contained in:
parent
0706936662
commit
62b1fadaf0
@ -498,15 +498,10 @@ class ChromiumElement(DrissionElement):
|
|||||||
if self.tag == 'input' and self.attr('type') == 'file':
|
if self.tag == 'input' and self.attr('type') == 'file':
|
||||||
return self._set_file_input(vals)
|
return self._set_file_input(vals)
|
||||||
|
|
||||||
try:
|
|
||||||
self.page.run_cdp('DOM.focus', backendNodeId=self._backend_id)
|
|
||||||
except Exception:
|
|
||||||
pass
|
|
||||||
self.click(by_js=True)
|
|
||||||
self.click.at()
|
|
||||||
|
|
||||||
if clear and vals != '\n':
|
if clear and vals != '\n':
|
||||||
self.clear(by_js=False)
|
self.clear(by_js=False)
|
||||||
|
else:
|
||||||
|
self._focus()
|
||||||
|
|
||||||
# ------------处理字符-------------
|
# ------------处理字符-------------
|
||||||
if not isinstance(vals, (tuple, list)):
|
if not isinstance(vals, (tuple, list)):
|
||||||
@ -533,8 +528,16 @@ class ChromiumElement(DrissionElement):
|
|||||||
self.run_js("this.value='';")
|
self.run_js("this.value='';")
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
self._focus()
|
||||||
self.input(('\ue009', 'a', '\ue017'), clear=False)
|
self.input(('\ue009', 'a', '\ue017'), clear=False)
|
||||||
|
|
||||||
|
def _focus(self):
|
||||||
|
"""使元素获取焦点"""
|
||||||
|
try:
|
||||||
|
self.page.run_cdp('DOM.focus', backendNodeId=self._backend_id)
|
||||||
|
except Exception:
|
||||||
|
self.run_js('this.focus();')
|
||||||
|
|
||||||
def hover(self, offset_x=None, offset_y=None):
|
def hover(self, offset_x=None, offset_y=None):
|
||||||
"""鼠标悬停,可接受偏移量,偏移量相对于元素左上角坐标。不传入x或y值时悬停在元素中点
|
"""鼠标悬停,可接受偏移量,偏移量相对于元素左上角坐标。不传入x或y值时悬停在元素中点
|
||||||
:param offset_x: 相对元素左上角坐标的x轴偏移量
|
:param offset_x: 相对元素左上角坐标的x轴偏移量
|
||||||
|
@ -180,6 +180,8 @@ class ChromiumElement(DrissionElement):
|
|||||||
|
|
||||||
def clear(self, by_js: bool = False) -> None: ...
|
def clear(self, by_js: bool = False) -> None: ...
|
||||||
|
|
||||||
|
def _focus(self) -> None: ...
|
||||||
|
|
||||||
def hover(self, offset_x: int = None, offset_y: int = None) -> None: ...
|
def hover(self, offset_x: int = None, offset_y: int = None) -> None: ...
|
||||||
|
|
||||||
def drag(self, offset_x: int = 0, offset_y: int = 0, speed: int = 40) -> None: ...
|
def drag(self, offset_x: int = 0, offset_y: int = 0, speed: int = 40) -> None: ...
|
||||||
@ -439,10 +441,6 @@ class Click(object):
|
|||||||
|
|
||||||
def middle(self): ...
|
def middle(self): ...
|
||||||
|
|
||||||
def left_at(self, offset_x: int = None, offset_y: int = None) -> None: ...
|
|
||||||
|
|
||||||
def right_at(self, offset_x: int = None, offset_y: int = None) -> None: ...
|
|
||||||
|
|
||||||
def at(self, offset_x: int = None, offset_y: int = None, button='left') -> None: ...
|
def at(self, offset_x: int = None, offset_y: int = None, button='left') -> None: ...
|
||||||
|
|
||||||
def _click(self, client_x: int, client_y: int, button: str = 'left') -> None: ...
|
def _click(self, client_x: int, client_y: int, button: str = 'left') -> None: ...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user