前提・実現したいこと
pythonでseleniumを使おうとしています。
ChromeDriverのバージョンが合わないとのエラーが出てしまいます。
環境:mac
chromeのバージョン:78.0.3904.70
(chrome canary 80.0.3953.6もインストールしましたが、chrome driverのバージョンが80台なかったのでchromeで使おうとしています。)
発生している問題・エラーメッセージ
This version of ChromeDriver only supports Chrome version 78
該当のソースコード
【sample.pyのコード】 from selenium import webdriver from selenium.webdriver.chrome.options import Options import chromedriver_binary options = Options() options.binary_location = '/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary' options.add_argument('--headless') driver = webdriver.Chrome(chrome_options=options) driver.get('https://www.google.co.jp/') html = driver.page_source print(html) driver.quit() 【ターミナルに表示されているもの】 sample.py:7: DeprecationWarning: use options instead of chrome_options driver = webdriver.Chrome(chrome_options=options) Traceback (most recent call last): File "sample.py", line 7, in <module> driver = webdriver.Chrome(chrome_options=options) File "/Users/yudai/opt/anaconda3/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py", line 81, in __init__ desired_capabilities=desired_capabilities) File "/Users/yudai/opt/anaconda3/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py", line 157, in __init__ self.start_session(capabilities, browser_profile) File "/Users/yudai/opt/anaconda3/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py", line 252, in start_session response = self.execute(Command.NEW_SESSION, parameters) File "/Users/yudai/opt/anaconda3/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute self.error_handler.check_response(response) File "/Users/yudai/opt/anaconda3/lib/python3.7/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response raise exception_class(message, screen, stacktrace) selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 78
試したこと
https://qiita.com/powerbatteryboy/items/c0f15226ee678737fca4
こちらのサイトを元に、ターミナルにて
pip install chromedriver-binary==78.0.3904.70
pip install selenium
を実行。
サイト上にあるテストコードを「sample.py」に記述し、
python sample.py
で実行すると、ターミナルに上記のエラーが出ます。
補足情報(FW/ツールのバージョンなど)
どなたか、ご教授お願いいたします、、、
回答1件
あなたの回答
tips
プレビュー