如何使用python重新加载HTML页面

时间:2019-04-14 12:42:03

标签: python html

我想重新加载我使用python在计算机上本地创建的html页面。我试过使用这个:

from selenium import webdriver
import time
driver = webdriver.Firefox()
driver.get('C://User/Desktop/total.html')
while True:
    time.sleep(20)
    driver.refresh()
driver.quit()

但是它抛出了FileNotFounError。有什么想法吗?谢谢。

0 个答案:

没有答案