首页 > 编程 > Python > 正文

Selenium定时刷新网页的实现代码

2020-02-15 23:29:52
字体:
来源:转载
供稿:网友

代码

代码很简单,主要是为了熟悉Selenium这个库的函数,为后续的短信轰炸做个铺垫

from selenium import webdriverimport timeimport randomurl = raw_input('Input your website:').strip()num = int(raw_input('How much times do you want:'),10)options = webdriver.FirefoxOptions()options.add_argument('--headless')browser = webdriver.Firefox(firefox_options=options)browser.get(url)print 'Please wait...'for i in range(num):  i += 1  print 'Refresh +%d' %i  time.sleep(random.randint(1,3))  browser.refresh()browser.quit()print 'Good Bye!'

补充:如何刷新当前页面

使用调用webdriver中刷新页面的方法

# coding=utf-8import timefrom 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()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持武林站长站。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表