前提・実現したいこと
gcpのvmインスタンスでseleniumでspaのスクレイピングを行いたいのですが、
その前のdriver = webdriver.Chrome()でどうしてもエラーが出てしまいます。
そのための対処をご教示頂きたいです。
どなたか精通されていらっしゃる方ご教示頂けますと大変幸甚でございます。
どうか宜しくお願い致します。
発生している問題・エラーメッセージ
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python3.6/site-packages/selenium/webdriver/chrome/webdriver.py", line 81, in init
desired_capabilities=desired_capabilities)
File "/usr/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 157, in init
self.start_session(capabilities, browser_profile)
File "/usr/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 252, in start_session
response = self.execute(Command.NEW_SESSION, parameters)
File "/usr/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "/usr/lib/python3.6/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: DevToolsActivePort file doesn't exist
他にも、WebDriverException:Chrome failed to start: crashed as google-chrome is no longer running so ChromeDriver is assuming that Chrome has crashedが出てきたりして困っておる次第です。
該当のソースコード
import sys
sys.path.append('/usr/lib/python3.6/site-packages')
sys.path.append('/usr/lib64/python3.6/site-packages')
sys.path.append('/usr/lib/python3.6/site-packages/chromedriver_binary')
sys.path.append('/usr/local/bin')
from bs4 import BeautifulSoup
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
import chromedriver_binary
options = Options()
options.set_headless(headless=True)
options.add_argument('--headless')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
driver = webdriver.Chrome(options=options)
試したこと
chromeのバージョンととchromedriverのバージョンをともに78にしています。
Google Chrome 78.0.3904.108
ChromeDriver 78.0.3904.70 (edb9c9f3de0247fd912a77b7f6cae7447f6d3ad5-refs/branch-heads/3904@{#800})
本当は74で試したいのですが、chromeのバージョンのダウングレード方法を調べても
分からなかったので、そちらもご存じの方がいらっしゃれば是非ご教示くださいませ。
補足情報(FW/ツールのバージョンなど)
Linux prod-batch-always-free 3.10.0-957.5.1.el7.x86_64 #1 SMP Fri Feb 1 14:54:57 UTC 2019 x86_64 x86_64 x86_64 GNU/
Linux
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/09 06:06
2019/12/09 07:06