Issue: I found I can set the value but it is not accepted.
Code:
$oIE = _IEAttach ("https://www.collateraldna.com/forms/default.aspx", "URL")
$oDiv = _IEGetObjById ($oIE, "APPRAISER")
$oDiv.value = "Me" This works
_IEAction($oDiv, "click") Result 0 but does nothing
_IEAction($oDiv, "focus") Result 2 ($_IEStatus_COMError) - COM Error in Object reference
From IE F12 See in red
<input name="APPRAISER" class="TextInput invalid" id="APPRAISER" aria-describedby="ui-tooltip-439" style="width: 301px; border-top-width: 1px; border-right-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-left-style: solid;" type="text" value="" validate="true">
What happens, on the screen I click on the field, enter "Me", click off the field and the textinput turns to valid. I can add the text input by the .value but I can not get it to be accepted. I can't get the click does not go anywhere and focus gives me the error. How do I put in the value and then get it to validate???? Somehow I need it to execute.