selenium - WebDriverException: Message: chrome not reachable - chromedriver 2.30 -


in [12]: selenium import webdriver  in [13]: chrome_options = webdriver.chromeoptions()  in [14]: chrome_options.add_argument('--no_sandbox')  in [15]: chrome_options.add_argument('--privileged')  in [16]: browser = webdriver.chrome('/home/jeremie/downloads/chromedriver', chrome_o     ...: ptions=chrome_options)  in [17]: browser.get('http://localhost:8000') 

when ran last line, got

webdriverexception: message: chrome not reachable   (session info: chrome=58.0.3029.81)   (driver info: chromedriver=2.30.477691 (6ee44a7247c639c0703f291d320bdf05c1531b57),platform=linux 4.8.0-32-generic x86_64) 

i tried change version of chromedriver, got other issues. tried fix problem other question se, nothing solved problem. fix problem?

  1. check have execution right on chrome bin. possbile chrome browser installed not account?

  2. give try not add arguments chromeoptions

  3. give try lower down chromedriver version


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -