We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5fbe719 + 0169bc9 commit a2fc457Copy full SHA for a2fc457
flybirds/core/plugin/plugins/default/web/element.py
@@ -92,6 +92,11 @@ def get_ele_text(self, param):
92
93
def ele_hover(self, context, param):
94
locator, timeout = self.get_ele_locator(param)
95
+ try:
96
+ self.page.mouse.move(1, 1)
97
+ self.page.wait_for_timeout(50)
98
+ except Exception as e:
99
+ log.info(f'ele_hover error: {e}')
100
locator.hover(timeout=timeout)
101
102
def ele_click(self, context, param):
0 commit comments