方法:
增加Selenium2Library内部关键字
C:\Python37\Lib\site-packages\SeleniumLibrary\keywords\element.py
具体实现:
-
找到 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()
如图:
3. 保存后重新打开Robot Framework RIDE,则可像其它关键字一样调用