Watin Runscript 无需等待

发布于 2024-11-03 18:35:20 字数 235 浏览 2 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与之呼应 2024-11-10 18:35:20

解决这个问题的一种方法是使用 JavaScript 的 settimeout() 函数包装脚本代码,然后通过 WatiN 运行它。

string timed = string.Format("setTimeout(\"{0}\", 500);", script);

Document.RunScript(timed);                        

One way you can get around this is to wrap your script code with JavaScript's settimeout() function and then run that via WatiN.

string timed = string.Format("setTimeout(\"{0}\", 500);", script);

Document.RunScript(timed);                        
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文