Chromedriverの使い方
Chrome driver
Chrome driverをダウンロードする
Mac
ターミナルから
brew cask install chromedriver
Homebrewのインストール方法
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Windows
https://chromedriver.chromium.org/downloads
上のURLから自分のGoogle Chromeのバージョンにあったものをダウンロード
Google Chromeのバージョン確認方法
https://kb.seeck.jp/archives/16883
ダウンロードしてきたものを展開して中に入っているchromedriver.exeを任意のフォルダーにコピー
PythonでChrome driverを使う方法
〇今回はSeleniumを使う
・Seleniumをインストール
pip install Selenium
・SeleniumのWebdriverとtimeをインポート
from selenium import webdriver import time
・GoogleChromeを起動(Mac)
browser = webdriver.Chrome() broeser.implicitly_wait(秒数(例:3))
・GoogleChromeを起動(Windows)
browser = webdriver.Chrome(executable_path(chromedriver.exeのパス)) broeser.implicitly_wait(秒数(例:3))