Make IE cache the resources but always revalidate

I’ve eventually figured it out. Here is an explanation and a tested solution. The following site confirms my observation: http://blog.httpwatch.com/2008/10/15/two-important-differences-between-firefox-and-ie-caching/ It says that IE does not locally store pages with the ‘no-cache’ directive and hence always sends an unconditional request. There’s also a MS support article – https://support.microsoft.com/help/234067/ – which confirms this: “Internet Explorer supports … Read more

Failproof Wait for IE to load

Try this one, it helped me to solve similar problem with IE once: Set oIE = CreateObject(“InternetExplorer.application”) oIE.Visible = True oIE.navigate (“http://technopedia.com”) Do While oIE.ReadyState = 4: WScript.Sleep 100: Loop Do While oIE.ReadyState <> 4: WScript.Sleep 100: Loop ‘ example ref to DOM MsgBox oIE.Document.GetElementsByTagName(“div”).Length UPD: Drilling down IE events I found that IE_DocumentComplete is … Read more