I am using MSHTML to automate oen workflow involved Angular. I am able to add the value in text box but somehow underline function doesn't get call and hence I get unwanted result. below is the sample:
objIHTMLElement = doc.getElementById("email");
objIHTMLElement.setAttribute("value", "sas@abc.com");
html looks as below:
<div class="inpt-fld-err-msg-inline">
<input title="Email Add"
class="ng-valid ng-valid-maxlength ng-touched ng-dirty ng-empty"
id="email" aria-invalid="false" type="text" maxlength="50"
ng-change="save(SearchParams)"
ng-model="SearchParams.userProfil" autocomplete="off">
</div>
is there any way to do it using C#?
Regards, Ajit