This should be simple and I've tried many of the examples posted on S/O and elsewhere but I can't seem to get it to work. Maybe a syntax error or I'm missing something else. Here's my code setup to start me off
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate "https://abcde"
Do Until IE.ReadyState = 4: DoEvents: Loop
Set htmlDoc = IE.Document
From here I open the page, enter ID & Password via code, click a number of buttons and continue navigating a few pages into it and since I'm doing some trial and error, I ultimately get an error. The page I want, maybe it's now "https://qwert" is still open, visible and I can still work on it directly but, of course, I can't continue with my VBA code on it.
How do I get Excel to be able to act upon that open web page via code so that I don't have to start over from the beginning?
Thanks for any help someone might be able to offer.