I am editing a vba program and want to code the vba to click on a button in a webpage. The html for the button is:
<input type=image src="/lihtml/test_button3.gif" align=left alt=File_Certificate_Go>
I imagine I would have to set a variable to getElementBy??? and then variable.click, but I can't figure out how exactly to get the element (because it doesn't have a name or id, and I can't give it one because it is not my webpage).
Any help is greatly appreciated!