Issue
So recently google updated their chrome version to 102.something.112 but chromedriver still on 102.something.61 and for that reason selenium is not able to run without crashing
(The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
Stacktrace:
chrome_options = Options()
chrome_options
chrome_options.add_argument("--no-sandbox") #bypass OS security model
chrome_options.add_argument("--disable-dev-shm-usage") #overcome limited resource problems
driver = webdriver.Chrome(chrome_options=chrome_options, executable_path='/usr/local/bin/chromedriver')
I already defined the path to chromedriver and also for chrome binary but that just don`t work, any ideas?
Solution
Problem solved since binary was included in chromedriver downloads
Answered By - Supra Chan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.