0

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.

Charles
  • 338
  • 3
  • 8

2 Answers2

1

From the ChromeDriver - WebDriver for Chrome page:


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