您当前的位置:首页 > 计算机 > 编程开发 > Python

Selenium成长之路-17刷新页面

时间:03-20来源:作者:点击数:

刷新是一个很常用的功能,我们来看看怎么使用刷新这个功能。

代码如下:

# coding = utf-8
from selenium import  webdriver
from selenium.webdriver.common.by import By
import time
driver = webdriver.Chrome()
url = 'http://www.baidu.com'
driver.get(url)

driver.maximize_window()#最大化窗口
#进入到百度新闻首页
driver.find_element(By.LINK_TEXT,'新闻').click()
time.sleep(10)
#刷新百度新闻首页
try:
    driver.refresh()
    print("Refresh the browser!")
except Exception as e:
    print("Failed to refresh",format(e))

time.sleep(3)
driver.quit()
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门