How to refresh a webpage in IE
- by Ramesh
HI all,
I have Ishare URL " www.example.com\ishare " which i opened it thru wshshell.
I want this page to be reloaded every 10 seconds. any help on this would be much appreciated. following is the script,
Dim WSHShell
Dim oShell
Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.Run("iexplore https://Infrastructure/IA/Lists/Incidents/AllItems.aspx")
oShell = "Incidents - Microsoft Internet Explorer"
WSHShell.appActivate(oShell)
WScript.sleep 500
WSHShell.SendKeys "{F5}"
Set WSHShell = Nothing