我需要从 ranorex 运行网页的 javascript 函数。所以,我给了 Add New Action -> User code,我在 Recording1.UserCode.cs 中写了以下代码
public void greet()
{
WebDocument webDocument = "/doc";
webDocument.ExecuteScript("document.write('Hello World!');");
}
当我播放录音时,报告中出现以下错误:
“在 10 秒内没有找到路径‘/doc’的元素。”
什么不见了?或者正确的方法是什么?