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


我们可以通过 Selenium 驱动程序获取页面的当前 URL。其方法为 current_url,此方法获取当前页面 URL,随后我们可以在控制台中打印结果。

语法

s = driver.current_url

让我们找出当前导航到的页面 URL,我们便可获得 https://tutorialspoint.com/index.htm 作为输出。

 

示例

from selenium import webdriver
driver = webdriver.Chrome(executable_path="C:\chromedriver.exe")
driver.implicitly_wait(0.5)
driver.get("https://tutorialspoint.com/index.htm")
#identify current URL with current_url
l= driver.current_url
print(Current URL is: " + l)
driver.close()
 

输出

 

 


更新于: 18-Sep-2020

897 人浏览

职业起航

完成课程后获得认证

开始
广告