I am scraping data from a proprietary system that serves inventory information via HTML. It includes images of parts that I'd like to scrape, but I cannot use the src link directly (the system is designed to block requests that aren't part of a returned web search). Since I am already scraping the HTML/page text, I'm hoping that someone can tell me how images are stored in IE once a page is loaded, and if there is any way to access that using the MS HTML reference commands/library
I've tried pinging the server directly with various versions of the src URL, with no luck.
Here are some relevant lines of my VBA:
Dim IE As InternetExplorer
Set IE = objShell.Windows(x)
Dim html As Object
Set html = IE.document
Dim ResultClasses as Object
Set resultClasses = html.getElementsByClassName("PM Parts List")
My goal is to add the appropriate IE/HTML call to get the images that were loaded when the page was originally loaded in IE. I cannot call the page to load it from the start within Excel VBA, due to the way items are selected (the load of building out a whole interface within Excel and using sendkeys would be way more hassle than getting the pictures to add to the procurement form for use when validating order reciept