Nimish Garg

Results 4 comments of Nimish Garg

> ``` > 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)) > ``` >...

Any solutions for this??