本文介绍了如何在Robot Framework中执行JavaScript的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

下面是我的代码.当我运行它时,它显示一个WebDriverException.如何在Robot Framework中执行JavaScript代码?

Below is my code. When I run this, it shows a WebDriverException. How do I execute JavaScript code in Robot Framework?

return $(arguments[0]).data('${ToolTip}').options.title代码在-java Selenium Web驱动程序中运行良好.

This, return $(arguments[0]).data('${ToolTip}').options.title code is doing well in -java Selenium web driver.

Mouse Over    ${CreateTask}
    Execute JavaScript    return $(arguments[0]).data('${ToolTip}').options.title

推荐答案

来自 http://rtomac.github.io/robotframework-selenium2library/doc/Selenium2Library.html#Execute%20Javascript :

所以

Mouse Over    ${CreateTask}
    Execute JavaScript    return window.$(arguments[0]).data('${ToolTip}').options.title

假设有一些库(最有可能是jQuery)实际上理解$速记.

Assuming there is some library (jQuery most probably) that actually understands the $ shorthand.

这篇关于如何在Robot Framework中执行JavaScript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 09:21