Python+Selenium练习篇之10-刷新当前页面

本文介绍如何调用webdriver中刷新页面的方法。

相关脚本代码如下:


# coding=utf-8
import time
from selenium import webdriver

driver = webdriver.Chrome()
driver.maximize_window()
driver.implicitly_wait(6)

driver.get("https://www.baidu.com")
time.sleep(2)
try:
driver.refresh() # 刷新方法 refresh
print ('test pass: refresh successful')
except Exception as e:
print ("Exception found", format(e))
driver.quit()

猜你喜欢

转载自www.cnblogs.com/wangyinghao/p/10532606.html