i use win32com.client for control Ie but i can't refresh my Ie pages i want know how can i refresh Ie Pages when i'm using win32com.client this is my code :
from win32com.client import Dispatch
import time
while True:
time.sleep(5)
ie = Dispatch("InternetExplorer.Application")
ie.visible = 1
ie.Navigate("https://google.com")
Every time a new page opens, but even if Google content. If it is changed, the the new opened page will not refresh