I'm having issues using ie.au3 include. I cannot get autoit to fill in the username and password and then click submit
Website I'm trying to automate: https://test.lps-lqgateway.com/OrderSelection/InitialOrderSelection
Here is the code i have so far (pretty sure my syntax is wrong when using the _IEFormElementGetObjByName and _IEFormElementSetValue functions):
Let me know if more information is needed and thanks in advance for your help!
HTML elements from IE_Builder2.0.1:
Website I'm trying to automate: https://test.lps-lqgateway.com/OrderSelection/InitialOrderSelection
Here is the code i have so far (pretty sure my syntax is wrong when using the _IEFormElementGetObjByName and _IEFormElementSetValue functions):
Let me know if more information is needed and thanks in advance for your help!
[ autoit ]
#include $o_IE = _IECreate("https://test.lps-lqgateway.com/OrderSelection/InitialOrderSelection", 0, 1, 1, 1) $o_login = _IEFormElementGetObjByName($o_IE, "UserName") $o_password = _IEFormElementGetObjByName($o_IE, "Password") _IEFormElementSetValue($o_login, "fake-username", 0) _IEFormElementSetValue($o_password, "fake-password", 0) Exit
HTML elements from IE_Builder2.0.1: