如何在Selenium Webdriver 2 Python中获取当前的URL?

我正在尝试在Selenium中进行一系列导航后获取当前url。 我知道有一个叫做getLocation for ruby​​的命令,但我找不到Python的语法。

使用current_url元素。 例:

print browser.current_url 

根据文件 (一个充满了好东西的地方:)):

 driver.current_url 

Selenium2Library有get_location():

 import Selenium2Library s = Selenium2Library.Selenium2Library() url = s.get_location()