Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Python: ChromeDriverManager chrome downloads from incorrect url of latest chromedriver

  • 18-08-2022 11:27am
    #1
    Registered Users, Registered Users 2 Posts: 5,660 ✭✭✭


    My log shows that the Chromedriver downloads from a 3 part version number rather than a 4-part

    10:32:22 INFO About to download new driver from https://chromedriver.storage.googleapis.com/104.0.5112/chromedriver_win32.zip
    


    It should be https://chromedriver.storage.googleapis.com/104.0.5112.79/chromedriver_win32.zip

    (i.e have the 4th part of version)

    Ive tried setting the latest_release_url to a 4 part version number but it doesnt overwrite it. Code below

    full_version = '104.0.5112.79'
            caps = {"pageLoadStrategy": "normal"}
            latest_release_url = 'https://chromedriver.storage.googleapis.com/{LATEST_RELEASE}_{full_version}'
            driver = webdriver.Chrome(
                ChromeDriverManager(
                    latest_release_url=latest_release_url).install(),
                options=options,
                desired_capabilities=caps)
    




Advertisement