我想獲得谷歌搜索結果使用HTML敏捷包,但我沒有得到正確的頁面。我得到的網頁是谷歌的主頁,獲取谷歌搜索結果在c#
(如果你嘗試將其粘貼到一個正常的瀏覽器,它會變成下面的網址)
private void GotoGoogleButton(object sender, EventArgs e)
{
webBrowser1.Navigate(new Uri("https://www.google.com"));
}
private void getResultsButton(object sender, EventArgs e)
{
url = webBrowser1.Url.ToString();
start_parsing(url);
}
public void start_parsing(string URL_)
{
//This function is used to Parse Html source using Html Agility Pack into nodes, and take the important ones (mainly : a,form,iframe)
HtmlAgilityPack.HtmlDocument document = webGet.Load(URL_);
var metaTags = document.DocumentNode.SelectNodes("//a");
// ...
// Continue with parsing...
}
我如何獲得的搜索結果,而不是主頁?
您必須格式化你的代碼(在您的文章,並在你的編輯)。否則,人們無法閱讀。 –