I have a webpage with a submit button.
I want to click the button but there is no button tag.
When I inspect the element its a IMG tag.
How can I make VBA code to click on IMG button to submit the page.
Its a intranet site so cannot provide the link
Use developer tool on the browser to trace what requests are sent when the image is clicked. Use that information to write code using WinHttp or XMLHTTP library instead of navigating/controlling IE.
Web scraping requires you to understand not only basics of VBA, but HTML DOM structure and/or string manipulation as well (it also helps to know bit of Java, JSON etc). But most importantly how to use the developer tool to understand what requests are sent to the server to get the information you are looking for.