C# - 如何使用Watin检测网站是否返回包含内容“此页面无法显示”的页面?

时间:2013-07-09 16:19:45

标签: c# watin

我有一个关于访问网站的项目。如果网站无法加载,浏览器会显示带有文字的页面:“此页面无法显示”。在这种情况下,我想自动刷新浏览器。程序将如何检测无法加载该网站? 。我已经尝试Ping()来检查连接,但似乎连接正常。看看下面的代码:

public void exam()
        {
            var ie = new IE();
            ie.GoTo("http://search.yahoo.com");
            ie.WaitForComplete(5);            
            if (ie.ContainsText("This page cannot be displayed"))
            {
                ie.Close();// or ie.Refresh()
            }

        }  

它不起作用。救命啊!

2 个答案:

答案 0 :(得分:0)

我不知道您的IE类型是什么,但您可以使用HttpWebRequest/HttpWebResponse并检查回复的StatusCode属性。

例如: -

HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.google.com");
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
if (response.StatusCode == HttpStatusCode.NotFound)
{
    //page not found
}
//etc....

HttpStatusCode枚举可用于检查各种不同的状态。

答案 1 :(得分:0)

您的代码看起来很好,只需等待等待完成的时间 确保文本与浏览器中显示的文本相同。

public void exam()
    {
        var ie = new IE();
        ie.GoTo("http://search.yahoo.com");
        ie.WaitForComplete();            
        if (ie.ContainsText("This page cannot be displayed"))
        {
            ie.Refresh();
        }

    }