Selenium VBAの基本的な使い方について取り上げます。各種サンプルソースを通じて動作確認してみるといいかと思います。 ※下記情報なども参考になります。 ・https://code.google.com/p/selenium-vba/ ・Selenium VBAのインストール先に格納されているヘルプファイル ⇒ SeleniumWrapper\SeleniumWrapperApi.chm ブラウザの起動・終了 Public Sub selenium_test1() Dim selenium As New SeleniumWrapper.WebDriver selenium.Start "chrome", "https://www.youtube.com" selenium.get ("channel/UCEgdi0XIXXZ-qJOFPf4JSKw") selenium.stop E