This commit is contained in:
g1879 2023-02-05 22:44:03 +08:00
parent a3bb84e7e0
commit e707ecb1ca
2 changed files with 7 additions and 4 deletions

View File

@ -255,10 +255,12 @@ class ChromiumBase(BasePage):
@property
def size(self):
"""返回页面总长高,格式:(长, 高)"""
w = self.run_js('document.body.scrollWidth;', as_expr=True)
h = self.run_js('document.body.scrollHeight;', as_expr=True)
return w, h
"""返回页面总宽高,格式:(宽, 高)"""
# w = self.run_js('document.body.scrollWidth;', as_expr=True)
# h = self.run_js('document.body.scrollHeight;', as_expr=True)
# return w, h
r = self.run_cdp('Page.getLayoutMetrics', not_change=False)['contentSize']
return r['width'], r['height']
@property
def active_ele(self):

View File

@ -744,6 +744,7 @@ class ChromiumElement(DrissionElement):
y += randint(-3, 4)
actions.move(x - current_x, y - current_y)
current_x, current_y = x, y
actions.wait(.1)
actions.release()
def _get_obj_id(self, node_id=None, backend_id=None):