0

Selenium Webdriver 通常从哪个地方获得标题-使用driver.title

  • 来自页面源
  • 或者来自 DOM 结构
4

1 回答 1

0

标题

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.

  • 远程结束步骤是:
    • 如果当前顶级浏览上下文不再打开,则返回错误,错误代码为 no such window。
    • 处理任何用户提示并在错误时返回其值。
    • 令title为调用算法的结果,以获取当前顶级浏览上下文的活动文档的title属性。
    • 使用数据标题返回成功。
于 2018-12-18T05:28:07.680 回答