我目前正在使用此方法在加载网址时刷新页面。
if driver.current_url == URL: driver.refresh()
是否有我可以使用的API方法,以便在页面标题与特定单词匹配时,则driver.refresh()
答案 0 :(得分:6)
使用driver.title
if "Python" in driver.title:
driver.refresh()
或者,ofc,严格平等:
if "Python" == driver.title:
driver.refresh()
作为提示,您可以通过将以下函数调用打印到控制台来检查driver
包含的其他内容:print(dir(driver))
。您会看到current_url
,title
,refresh
等内容,可能会节省您的时间。