I have done client side form validation using AngularJS, it works like a charm!
Then, I implemented server side validation and I want to test it by sending wrong data to the server. AngularJS (client side form validation) does not allow me to send wrong data to the server!
What can I do?
(Disabling Javascript cannot be a choice, because it will stop all ajax calls and thus no server side methods are called in my application)
Summery of the question:
users compromise front end validation (yes, it happens in practice!), how can I do the same for testing?