My script opens a web page and I’m trying to click on is a href on the page.
The href on the web page that I want to click on (or run if there’s another way) is:
<a class="ssSearchHyperlink" href="javascript:LaunchSearch('Search.aspx?ID=400', false, false, sbxControlID2)"> Civil, Family Case Records </a>
I need help on line 5 of the script below:
#include <ie.au3>
$oIE = _IECreate ("https://ccmspa.pinellascounty.org/PublicAccess/default.aspx")
$hIE = _IEPropertyGet($oIE, "hwnd")
WinSetState($hIE, "", @SW_MAXIMIZE)
$obj = _IEGetObjByName($oIE, "????????????") ; < How do I get the object so I can click on it?
_IEAction($obj, "click")
_IELoadWait($oIE)