[Solved] How to click a button on a webpage?


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

solved How to click a button on a webpage?