ui自动化鼠标悬停封装
时间: 2023-08-24 16:10:57 浏览: 227
在UI自动化中,鼠标悬停是一个常见的操作,通常用于选择省市区下拉框或选择框等场景。在Selenium中,可以使用ActionChains类来实现鼠标悬停的动作。首先,需要导入ActionChains类,代码如下:from selenium.webdriver.common.action_chains import ActionChains。然后,可以使用move_to_element方法来实现鼠标悬停操作。具体的封装代码如下:
def move_to_element(self, ele_info):
try:
# 先定位到目标元素
el = self.find_element(ele_info)
# 鼠标悬停在这个元素上面
action = ActionChains(self.driver)
action.move_to_element(el).perform()
self.logger.info(f'鼠标悬浮元素{ele_info}成功')
except Exception as e:
self.logger.error(f'鼠标悬浮元素{ele_info}失败,报错信息为{e}')
# 抛出异常
raise Exception(f'鼠标悬浮元素{ele_info}失败,报错信息为{e}')
这段代码中,首先通过find_element方法定位到目标元素,然后使用ActionChains类创建一个action对象,调用move_to_element方法将鼠标悬停在目标元素上,最后调用perform方法执行操作。这样就实现了鼠标悬停的封装。
#### 引用[.reference_title]
- *1* *2* [webui自动化测试框架(2)——对基本操作进行封装common](https://blog.csdn.net/weixin_42684559/article/details/119870680)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [python+selenium--UI自动化 pom模式封装,长幅慢更](https://blog.csdn.net/weixin_44765296/article/details/123587835)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文