当前位置:  开发笔记 > 编程语言 > 正文

我可以使用WatiN阅读JavaScript警告框吗?

如何解决《我可以使用WatiN阅读JavaScript警告框吗?》经验,为你挑选了1个好方法。

我想使用WatiN来验证JavaScript警告框中的错误消息.这可能吗?谢谢.



1> Dror..:

请参阅Trev的博客和此处.

using(IE ie = new IE("http://hostname/pagename.htm"))
{
    AlertDialogHandler alertDialogHandler = new AlertDialogHandler();
    using (new UseDialogOnce(ie.DialogWatcher, alertDialogHandler ))
    {
        /*************************************
        * -- alert -- *
        * *
        * must use the "NoWait" to allow *
        * the code to goto the next line *
        * *
        *************************************/

        alertDialogHandler.WaitUntilExists();
        alertDialogHandler.OKButton.Click();
        ie.WaitForComplete();
    }
}

推荐阅读
pan2502851807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有