在selenium-python中查找页面标题

时间:2018-02-07 10:18:09

标签: python selenium

我目前正在使用此方法在加载网址时刷新页面。

if driver.current_url == URL: driver.refresh()

是否有我可以使用的API方法,以便在页面标题与特定单词匹配时,则driver.refresh()

1 个答案:

答案 0 :(得分:6)

使用driver.title

if "Python" in driver.title:
    driver.refresh()

或者,ofc,严格平等:

if "Python" == driver.title:
    driver.refresh()

作为提示,您可以通过将以下函数调用打印到控制台来检查driver包含的其他内容:print(dir(driver))。您会看到current_urltitlerefresh等内容,可能会节省您的时间。