実現したいこと
seleniumを使用してchromeを表示させたい
前提
皆様、いつもお世話になっております。
seleniumの練習の為、chromeを表示させたいのですが以下のエラーが表示されどうしても
うまくいきません。ネットで調べた情報を色々試したりもしましたが、ダメでした。
どこが悪いのかアドバイス頂けたら幸いです。Python初心者になります。
発生している問題・エラーメッセージ
[root@localhost TEST]# python3 sample2.py [WDM] - ====== WebDriver manager ====== [WDM] - Current google-chrome version is 109.0.5414 [WDM] - Get LATEST chromedriver version for 109.0.5414 google-chrome [WDM] - Driver [/root/.wdm/drivers/chromedriver/linux64/109.0.5414.74/chromedriver] found in cache Traceback (most recent call last): File "sample2.py", line 8, in <module> driver = webdriver.Chrome(ChromeDriverManager().install()) File "/usr/local/lib/python3.6/site-packages/selenium/webdriver/chrome/webdriver.py", line 81, in __init__ desired_capabilities=desired_capabilities) File "/usr/local/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 157, in __init__ self.start_session(capabilities, browser_profile) File "/usr/local/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 252, in start_session response = self.execute(Command.NEW_SESSION, parameters) File "/usr/local/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute self.error_handler.check_response(response) File "/usr/local/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: Chrome failed to start: exited abnormally. (unknown error: DevToolsActivePort file doesn't exist) (The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
該当のソースコード
Python
1from selenium import webdriver 2from webdriver_manager.chrome import ChromeDriverManager 3from selenium.webdriver.chrome.options import Options 4options = Options() 5 6options.add_argument('--headless') 7options.add_argument("--no-sandbox") 8driver = webdriver.Chrome(ChromeDriverManager().install()) 9driver.get('https://google.co.jp/') 10driver.quit()
試したこと
・option追加
options.add_argument('--headless')
options.add_argument("--no-sandbox")
・webdriver-managerのインストール
補足情報(FW/ツールのバージョンなど)
・Centos7
・Python3.6.8
・Google Chrome 109.0.5414.119
・ChromeDriver 109.0.5414.74
・webdriver-manager 3.7.1
・chromedriver-binary 109.0.5414.74.0
・selenium 3.141.0
回答2件
あなたの回答
tips
プレビュー