ManuelSalaz

Results 2 comments of ManuelSalaz

> ``` > driver_path = ChromeDriverManager().install() > if driver_path: > driver_name = driver_path.split('/')[-1] > if driver_name!="chromedriver": > driver_path = "/".join(driver_path.split('/')[:-1]+["chromedriver"]) > os.chmod(driver_path, 0o755) > driver = webdriver.Chrome(service=Service(driver_path)) > ``` >...

> > ``` > > driver_path = ChromeDriverManager().install() > > if driver_path: > > driver_name = driver_path.split('/')[-1] > > if driver_name!="chromedriver": > > driver_path = "/".join(driver_path.split('/')[:-1]+["chromedriver"]) > > os.chmod(driver_path, 0o755)...