Skip to content
Advertisement

How do I get current URL in Selenium Webdriver 2 Python?

I’m trying to get the current url after a series of navigations in Selenium. I know there’s a command called getLocation for ruby, but I can’t find the syntax for Python.

Advertisement

Answer

Use current_url element for Python 2:

print browser.current_url

For Python 3 and later versions of selenium:

print(driver.current_url)
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement