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

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自动化测试鼠标悬停_第1张图片
3. 保存后重新打开Robot Framework RIDE,则可像其它关键字一样调用
Robot Framework web自动化测试鼠标悬停_第2张图片

你可能感兴趣的:(自动化测试,web自动化测试,鼠标悬停,Robot,Framework,鼠标悬停,selenium,鼠标悬停)