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:
Perhaps something on the lines of:
Set tags = wb.Document.GetElementsByTagname("Input") For Each tagx In tags If tagx.alt = "File_Certificate_Go" Then tagx.Click End If Next
Where wb is the WebBrowser control.