Hello there,
I'm pretty new with Python.
I would like to run python script using the webbot librabry : → https://webbot.readthedocs.io/en/latest/
This is a simple script that go to a website, connect to it and refresh every 10min.
Here's some errors from the console :
File "/home/arthurn/.local/lib/python3.7/site-packages/webbot/webbot.py", line 52, in __init__
self.driver = webdriver.Chrome(executable_path=driverpath , chrome_options=options)
File "/usr/lib/python3.7/site-packages/selenium/webdriver/chrome/webdriver.py", line 69, in __init__
desired_capabilities=desired_capabilities)
File "/usr/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py", line 90, in __init__
self.start_session(desired_capabilities, browser_profile)
File "/usr/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py", line 177, in start_session
response = self.execute(Command.NEW_SESSION, capabilities)
File "/usr/lib/python3.7/site-packages/selenium/webdriver/remote/webdriver.py", line 236, in execute
self.error_handler.check_response(response)
File "/usr/lib/python3.7/site-packages/selenium/webdriver/remote/errorhandler.py", line 192, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: DevToolsActivePort file doesn't exist
(Driver info: chromedriver=2.39.562737 (dba483cee6a5f15e2e2d73df16968ab10b38a2bf),platform=Linux 4.4.0-1100-aws x86_64)
Thank you for your help.