●テスト●てすと
2022年09月24日
【メモ】Excel VBA, Chrome, Selenium スクレイピング
VBAのスクレイピングを簡単楽にしてくれるSelenium
https://excel-ubara.com/excelvba4/EXCEL_VBA_401.html
Seleniumを導入し、VBAでchromeを自動操作する
https://hineke.jp/archives/4876
Option Explicit
'https://excel-ubara.com/excelvba4/EXCEL_VBA_401.html#sec04
'↑の内容を少し変えるとできた
Sub sample()
Dim Driver As New Selenium.WebDriver
Driver.Start "chrome", "https://www.yahoo.co.jp/"
Driver.Get "/"
Driver.FindElementByCss("#tabpanelTopics1").Click
Dim txt As String
txt = Driver.FindElementByCss("#tabpanelTopics1 > div > div._2jjSS8r_I9Zd6O9NFJtDN-").Text
Debug.Print txt
Driver.Close
Stop '確認するため
Set Driver = Nothing
End Sub
Seleniumを使ってVBAからchromeブラウザ操作(VBA編)
https://3rdcom.biz/b/selenium%E3%82%92%E4%BD%BF%E3%81%A3%E3%81%A6vba%E3%81%8B%E3%82%89chrome%E3%83%96%E3%83%A9%E3%82%A6%E3%82%B6%E6%93%8D%E4%BD%9Cvba%E7%B7%A8/
【VBA】Seleniumリファレンス(逆引き)【まとめ】
https://nkmrdai.com/vba-selenium-reference/
https://excel-ubara.com/excelvba4/EXCEL_VBA_401.html
Seleniumを導入し、VBAでchromeを自動操作する
https://hineke.jp/archives/4876
Option Explicit
'https://excel-ubara.com/excelvba4/EXCEL_VBA_401.html#sec04
'↑の内容を少し変えるとできた
Sub sample()
Dim Driver As New Selenium.WebDriver
Driver.Start "chrome", "https://www.yahoo.co.jp/"
Driver.Get "/"
Driver.FindElementByCss("#tabpanelTopics1").Click
Dim txt As String
txt = Driver.FindElementByCss("#tabpanelTopics1 > div > div._2jjSS8r_I9Zd6O9NFJtDN-").Text
Debug.Print txt
Driver.Close
Stop '確認するため
Set Driver = Nothing
End Sub
Seleniumを使ってVBAからchromeブラウザ操作(VBA編)
https://3rdcom.biz/b/selenium%E3%82%92%E4%BD%BF%E3%81%A3%E3%81%A6vba%E3%81%8B%E3%82%89chrome%E3%83%96%E3%83%A9%E3%82%A6%E3%82%B6%E6%93%8D%E4%BD%9Cvba%E7%B7%A8/
【VBA】Seleniumリファレンス(逆引き)【まとめ】
https://nkmrdai.com/vba-selenium-reference/
【このカテゴリーの最新記事】
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
この記事へのコメント
コメントを書く
この記事へのトラックバックURL
https://fanblogs.jp/tb/11603919
※ブログオーナーが承認したトラックバックのみ表示されます。
この記事へのトラックバック