1

我正在尝试在 selenium 中执行以下脚本

    result = driver.execute_script('let result; await axe.run().then((r)=> {result=r}); return result;')

但它正在回归

javascript 错误:await 仅在异步函数中有效

我也试过做

    result = @driver.execute_async_script('(async() => {return await axe.run();})();')

但它返回了以下错误

Selenium::WebDriver::Error::ScriptTimeoutError:脚本超时:30 秒内未收到结果

4

1 回答 1

1

如果你想使用execute_async_script你需要调用传递的回调函数告诉驱动你已经完成了,否则驱动不会识别你已经完成并等待直到超时。回调函数是最后一个参数:

script = "
var callback = arguments[arguments.length - 1]; // this is the callback to call when you are done
axe.run().then((r)=> {callback(r)});
"
result = @driver.execute_async_script(script);

参考

于 2021-01-13T05:32:11.063 回答