[Solved] How to click a button on a webpage?
[ad_1] Solved my issue. I came up with something similar to the above poster. $oLinks = _IETagNameGetCollection($oIE, “input”) For $oLink In $oLinks If String($oLink.type) = “submit” And String($oLink.value) = “Log On” Then _IEAction($oLink, “click”) ExitLoop EndIf Next 0 [ad_2] solved How to click a button on a webpage?