PythonScriptsPro icon indicating copy to clipboard operation
PythonScriptsPro copied to clipboard

Selenium

Open akeslo opened this issue 3 years ago • 0 comments

Is there any way to run scripts that use selenium?

from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager import paho.mqtt.publish as publish import json


# Web Options
options = webdriver.ChromeOptions()
options.headless = True
driver = webdriver.Chrome(
    executable_path=ChromeDriverManager().install(), options=options)

Error executing script: There is no such driver by url https://chromedriver.storage.googleapis.com/104.0.5112.79/chromedriver_linux32.zip

I'm using Selenium and Webdriver_Manager, getting the below error:

Thanks!

akeslo avatar Aug 04 '22 02:08 akeslo