##概要
colaboratoryにてスクレイピングを行おうと思ったのですが、以下のエラーが発生してしまいました。。
エラーナンバーが-6の記事はあまり見つれることができず、対処に困っております。。
##エラーコード
errorcode
1Service chromedriver unexpectedly exited. Status code was: -6
##現在の記述
code
1!apt-get update 2!apt install chromium-chromedriver 3!pip install chromedriver-binary==91.0.4472.19.0 4※ChromeのVerが最新版(90.0.4430.93)であることは確認済みです。 5!cp /usr/lib/chromium-browser/chromedriver /usr/bin 6!pip install selenium 7 8from google.colab import auth 9from oauth2client.client import GoogleCredentials 10import chromedriver_binary 11from selenium import webdriver 12from selenium.webdriver.chrome.options import Options 13from selenium.webdriver.support.ui import WebDriverWait 14import requests 15 16from oauth2client.service_account import ServiceAccountCredentials 17 18 19options = webdriver.ChromeOptions() 20options.add_argument('--headless') 21options.add_argument('--no-sandbox') 22options.add_argument('--disable-dev-shm-usage') 23driver = webdriver.Chrome('chromedriver',options=options) 24wait = WebDriverWait(driver, 120) 25driver.get("https://www.google.com/")
##参考にした記事
https://qiita.com/ftoyoda/items/fe3e2fe9e962e01ac421
##類似記事
https://teratail.com/questions/288027
https://stackoverflow.com/questions/61820322/selenium-common-exceptions-webdriverexception-message-service-chromedriver-une
回答2件
あなたの回答
tips
プレビュー