I am running into an issue with web sites that our product needs to autofill using the WebBrowser control.
Some are starting to use AngularJS and I am trying to automatically fill in the values such as User Name and Password.
This is a site we are trying to interact with:
https://dashboard.dnb.com/loginRun the EvalScript code:
document.getElementsByName("email")[0].value = "test@test.com"
document.getElementsByName("password")[0].value = "password"
But pressing the button still says to please enter the values.
I am not familiar with AngularJS and have dug through many examples but still am stuck on how to get it to 'trigger' the input of the fields to their framework.