Python 自動重新整理網頁

2022-03-16 12:46:18 字數 579 閱讀 9587

新聞**文章好不好,瀏覽量比較重要。瀏覽量大,boss看了開心。

因為單位網路剛建立,不是很複雜,每次增加乙個pv,瀏覽量加1。所以我就寫了乙個簡單的python指令碼,代替f5的工作。

# coding = utf-8

import time

from selenium import webdriver

def refresh(url,num):

driver = webdriver.chrome("e:/chromedriver.exe")

driver.get(url)

for i in range(num):

time.sleep(0.01)

driver.refresh()

driver.close()

if __name__ == "__main__":

url = input("please enter the url:\n")

num = int(input("enter the number of refresh:\n"))

refresh(url,num)

網頁自動重新整理

問題描述 有乙個列表頁,使用者新增一條資料後,該列表頁沒有自動更新 注 不使用window.showmodaldialog 解決方案 小哥親測 1 網頁視窗獲取焦點時自動過載 2 window.onfocus function 5 對於巢狀的子頁 6 window.parent.onfocus fu...

定時重新整理網頁上的資料

可以實現定時重新整理網頁上的資料 只重新整理資料,而不是整個頁面重新整理 aspx中 程式 這裡是要重新整理的資料顯示的地方。aspx.cs中 程式 protected void timer1 tick object sender,eventargs e 乙個頁面中,可以有多個updatepanel...

彈出視窗 重新整理父頁面 出現無法重新整理網頁 重試

解決方案一 1.將父頁面的form提交方式為 get 2.將呼叫 window.location.reload 的地方重定向一下 window.location.href window.location.href window.location.href.reload 只用第二步不用第一步,雖然也能...