In updating from chromedriver 84 to 85, the current_url method is not returning the correct current url. It appears v85 only returns the end of the url.
Asked
Active
Viewed 100 times
2 Answers
1
From the ChromeDriver - WebDriver for Chrome page:
- Current stable release: ChromeDriver 84.0.4147.30
- Current beta release: ChromeDriver 85.0.4183.38
Current stable release
The current stable release is well tested and have passed the alpha and beta test before the public release and can be safely used in the Production Environment.
Current beta release
The current beta release is still under beta test and is exclusively for Chrome Canary, the Nightly build for developers and in any case shouldn't be used in the Production Environment.

undetected Selenium
- 183,867
- 41
- 278
- 352
0
My work-around for now is to simply do this:
retURL=driver.execute_script("return document.location.href;")

Charles
- 338
- 3
- 8