前提
スクレイピングをするため、chromeで操作をしたていたのですがその準備段階で同じコードで今までで起きなかったエラーが起きるようになりました。
実現したいこと
スクレイピングをするキーワードをサイト内の検索ボックス打ち込みたいです。
発生している問題・エラーメッセージ
エラーメッセージ
WebDriverException Traceback (most recent call last)
<ipython-input-6-f4fabb882eed> in <module>
24
25
---> 26 driver = webdriver.Chrome('chromedriver',options=options)
27
28 driver.implicitly_wait(10)
3 frames
/usr/local/lib/python3.8/dist-packages/selenium/webdriver/common/service.py in assert_process_still_running(self)
117 return_code = self.process.poll()
118 if return_code:
--> 119 raise WebDriverException(f"Service {self.path} unexpectedly exited. Status code was: {return_code}")
120
121 def is_connectable(self) -> bool:
WebDriverException: Message: Service chromedriver unexpectedly exited. Status code was: -6
該当のソースコード
python
ソースコード
!apt-get update
!apt install chromium-chromedriver
!cp /usr/lib/chromium-browser/chromedriver /usr/bin
!pip install selenium
from selenium import webdriver
from selenium.webdriver.common.by import By
from bs4 import BeautifulSoup
import time
import re
import requests
import chromedriver_binary
options = webdriver.ChromeOptions()
options.add_argument('--headless')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
driver = webdriver.Chrome('chromedriver',options=options)
driver.implicitly_wait(10)
試したこと
googleやTwitterなどで検索しましたが、出てこず、手も足も出ない状況です。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2023/01/19 02:38
2023/01/19 02:44
2023/01/19 03:43 編集
2023/01/19 09:33