我有VB代碼轉到Google,填寫搜索欄並點擊搜索按鈕。有沒有辦法讓我的程序在搜索後選擇特定的結果?即。我搜索「奶酪」,我想爲我的程序選擇第二個到最後一個結果(在這種情況下,它是wwww.chuckecheese.com)使用Visual Basic在Internet Explorer中選擇Google搜索結果
0
A
回答
0
我最終使用Sendkeys來模擬選項卡和向下箭頭鍵在鍵盤上。然後,您可以瀏覽到您想要的搜索結果中使用這些2把鑰匙
-1
也可以使用谷歌API爲
轉到http://code.google.com/p/google-api-for-dotnet/
下載GoogleSearchAPI_0.4_alpha.zip
提取出來,並添加引用到您項目中的dll文件(在.net 2文件夾中)
並且您可以像這樣使用它
首次導入庫
Imports Google.API.Search
然後在子或函數把你的代碼
Dim rf As String = "http://www.google.com"
Dim v As New Google.API.Search.GwebSearchClient(rf)
Dim result = v.Search(TextBox1.Text, 40)
' number (40) is the amount of fetched results (change it if you want)
For Each item In result
If item.Url.Contains("chuckecheese") Then
' your code goes here
End If
Next
相關問題
- 1. 在Google中搜索結果
- 2. 在PHP中搜索Google搜索結果
- 3. Visual Basic,搜索框和在列表框中顯示結果
- 4. 在watir中選擇搜索結果
- 5. 在Visual Studio中禁用搜索選擇
- 6. 在Internet Explorer中的HTML選擇選項
- 7. Combobox從搜索結果中選擇Javafx
- 8. 不同的結果選擇在Firefox和Internet Explorer使用XPath的HTML元素
- 9. 使用JSoup獲取Google搜索結果
- 10. 使用Rails獲取Google搜索結果
- 11. 使用PHP輸出Google搜索結果?
- 12. 使用ImportXML導入Google搜索結果
- 13. 將焦點設置到Internet Explorer對象在Visual Basic中
- 14. 在Internet Explorer中選擇框問題
- 15. 在Internet Explorer中設置textarea選擇
- 16. 正文選擇Internet Explorer
- 17. 選擇Internet Explorer中的選項卡
- 18. 在Richtextbox中搜索和替換 - Visual Basic
- 19. Google搜索結果頁面
- 20. Google地方搜索結果
- 21. google api搜索結果
- 22. 在Internet Explorer中的JQuery - 選擇表列
- 23. 如何使用Visual Basic在Internet Explorer中「製表」和「向下箭頭」
- 24. Google應用索引ios搜索結果
- 25. Ajax選擇通配符搜索結果
- 26. 訪問Google搜索結果
- 27. 無法從select2搜索結果中選擇結果
- 28. Internet Explorer視圖選擇源
- 29. Visual Basic - 選擇開始/結束位置
- 30. Visual Basic 2008文件搜索
你的意思是提取所有結果的鏈接? –
如果沒有代碼,我們無法知道您在說什麼。 –
@DougGlancy:這是我猜的最後一個問題的後續行動:) –