I have a workplace GUI that has a search field function that pulls up customer records to allow changes. I am attempting to 1)LOGIN 2)Enter Search field, enter a number and then {ENTER} 3)change specific field once customer record loads. I have very limited experience in GUI manipulation but I am able to login using the below:
#include <IE.au3>
Const $navOpenInNewTab = 0x0800
Dim $oIE = _IECreate('http://asag.xxxxxxx.com/ASAG/index.htm')
Call ("RacksheetSignIn")
Func RacksheetSignIn ()
Local $username = _IEGetObjByName ($oIE,"uname")
Local $password = _IEGetObjByName ($oIE,"pword")
$oIE.Navigate2('http://asag.xxxxxxx.com/apps/RackSheets/LogInSAG/login.asp',2048)
_IEFormElementSetValue ($username, "xxxxxxx")
_IEFormElementSetValue ($password, "xxxxxxx")
Send('{Enter}')
EndFunc
However I can't seem to use the _IEGetObjByName or Mouseclick to focus on the search field to allow me to enter my search criteria. When I "inspect element" in the Search field I get the attached:
Any help would be MUCH appreciated