Watin Runscript 无需等待
在 Watin 中,就像我们有 button.Click()
和 button.ClickNoWait()
方法一样。我们如何才能为 ie.Runscript("Script")
提供这个。
在脚本运行中,实际上打开了一个模式弹出窗口,因为 NoWait
或等效项不可用,我无法处理模式弹出窗口:(
任何人都可以建议我。
In Watin, as we have for button.Click()
and button.ClickNoWait()
methods. How can we have this for ie.Runscript("Script")
.
In the script run actually a modal popup is opened, because NoWait
or equivalent is not available I cannot handle the modal popup :(
Can anyone please suggest me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决这个问题的一种方法是使用 JavaScript 的 settimeout() 函数包装脚本代码,然后通过 WatiN 运行它。
One way you can get around this is to wrap your script code with JavaScript's settimeout() function and then run that via WatiN.