I am currently using the following VBA code to open the website on IE:
Set IE = CreateObject("internetexplorer.application")
IE.Visible = True
IE.Navigate "http://test.com"
I now need to download an image from the website as a .gif which has the following source (from using inspect element):
<img src="test.php" align="left">
Any advise on how I could do this please?