如何使用Selenium和python获取浏览器选项卡的名称

时间:2019-02-07 23:37:12

标签: python selenium selenium-webdriver

我成功使用selenium和python打开了一个url。在浏览器的地址栏上方,有一个打开的标签页,我试图获取该标签页显示的名称。 例如我打开了网址-https://8.8.8.8 打开后,标签名称显示为Google。

我正在尝试获取标签的名称,即Google。

1 个答案:

答案 0 :(得分:4)

只需致电driver.title。见下文:

from selenium import webdriver
d = webdriver.Chrome()
d.get('https://python.org')
d.title
# 'Welcome to Python.org'