I'm working on a chrome extension which I'd like to automatically fill in some forms on a specific web application. The web application uses angular.js and each input has a blur event which validates the values (ng-blur="validateValue(input)").
I can get the value in the inputs but for the web application to actually receive them the validateValue method has to be triggered.
Is there any way that I can trigger the ng-blur through my extension?
I've tried: - calling the blur method (both native and jquery). - calling focus before calling blur