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

时间:2009-01-19 16:21:15

标签: watin

我想使用WatiN在JavaScript警告框中验证错误消息。这可能吗?感谢。

1 个答案:

答案 0 :(得分:13)

另见Trev's Bloghere

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();
    }
}