I am using VBA to have excel auto login to a web page and access several different links by using sendkey "{TAB}" and "{ENTER}" statements. The web pages load sometimes slow and sometimes fast. Currently I am using Application.Wait (Now + TimeValue("0:00:10")) to pause while the web page loads. I have seen several posts refer to
......Do While appIE.ReadyState < READYSTATE_COMPLETE......
if you want the page to finish loading before moving on. When I use this method, it never waits. It always assumes that this statement has been satisfied and "skips" to the next line of code. When I mouse over the "READYSTATE_COMPLETE" while using debug, it always reads "READYSTATE_COMPLETE = EMPTY". It seems like the page I am using is Java based if that helps.
Any ideas?
Thanks
Rob
......Do While appIE.ReadyState < READYSTATE_COMPLETE......
if you want the page to finish loading before moving on. When I use this method, it never waits. It always assumes that this statement has been satisfied and "skips" to the next line of code. When I mouse over the "READYSTATE_COMPLETE" while using debug, it always reads "READYSTATE_COMPLETE = EMPTY". It seems like the page I am using is Java based if that helps.
Any ideas?
Thanks
Rob