Selenium Webdriver 通常从哪个地方获得标题-使用driver.title
?
- 来自页面源
- 或者来自 DOM 结构
Selenium Webdriver 通常从哪个地方获得标题-使用driver.title
?
title返回当前页面的标题。
用法:
title = driver.title
定义:
def title(self):
"""Returns the title of the current page.
:Usage:
title = driver.title
"""
resp = self.execute(Command.GET_TITLE)
详细信息:当您调用HTTP GET请求driver.title
时,会通过URI Template调用。 /session/{session id}/title
注意:该命令返回当前顶级浏览上下文的文档标题,相当于调用
document.title
.