mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
3.2.18click()强制点击时如元素无法滚动到视口,改用js
This commit is contained in:
parent
c2e8d86d38
commit
b076ff9952
@ -1668,7 +1668,10 @@ class Click(object):
|
|||||||
can_click = True
|
can_click = True
|
||||||
break
|
break
|
||||||
|
|
||||||
if by_js is False or (can_click and not self._ele.states.is_covered):
|
if not self._ele.states.is_in_viewport:
|
||||||
|
by_js = True
|
||||||
|
|
||||||
|
elif can_click and (by_js is False or not self._ele.states.is_covered):
|
||||||
client_x, client_y = self._ele.locations.viewport_midpoint if self._ele.tag == 'input' \
|
client_x, client_y = self._ele.locations.viewport_midpoint if self._ele.tag == 'input' \
|
||||||
else self._ele.locations.viewport_click_point
|
else self._ele.locations.viewport_click_point
|
||||||
self._click(client_x, client_y)
|
self._click(client_x, client_y)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user