How to refresh a webpage in IE
Posted
by Ramesh
on Stack Overflow
See other posts from Stack Overflow
or by Ramesh
Published on 2010-04-16T04:13:57Z
Indexed on
2010/04/16
4:23 UTC
Read the original article
Hit count: 341
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
© Stack Overflow or respective owner