def _mouse_over(self, element, **kwargs ):
"""Moving the mouse to the middle of an element """
status = False
print_info("mouse over operation")
browser_instance = kwargs.get('browser')
if element is not None:
ActionChains(browser_instance).move_to_element(element).perform()
status = True
return status
element_operations.py 文件源码
python
阅读 23
收藏 0
点赞 0
评论 0
评论列表
文章目录