Robot Framework web自动化测试鼠标悬停

时间:2024-05-19 08:42:19

Robot Framework web自动化测试鼠标悬停

方法:

增加Selenium2Library内部关键字

C:\Python37\Lib\site-packages\SeleniumLibrary\keywords\element.py

具体实现:

  1. 找到 C:\Python37\Lib\site-packages\SeleniumLibrary\keywords\element.py文件,文件末尾增加代码。

    @keyword
    def mouse_hover(self, locator):
    ‘’’
    功能: 鼠标悬停
    参数说明:locator 定位器
    作者: XXX
    日期: 20190131
    更新记录:
    ‘’’
    element = self.find_element(locator)
    action = ActionChains(self.driver)
    action.move_to_element(element).perform()

如图:
Robot Framework web自动化测试鼠标悬停
2. 保存后重新打开Robot Framework RIDE,则可像其它关键字一样调用
Robot Framework web自动化测试鼠标悬停