Ask HN: Tools for automatic form testing
4 comments
Thx everyone although the suggested tools seems more for testing automation.
What I need is something like Site24x7, Catchpoint etc. but with the ability to verify the JS validation on form fields.
What I need is something like Site24x7, Catchpoint etc. but with the ability to verify the JS validation on form fields.
For this, we use Cucumber[0] with Capybara[1], Poltergeist[2] and PhantomJS[3].
[0] https://cucumber.io/
[1] https://github.com/jnicklas/capybara
[2] https://github.com/teampoltergeist/poltergeist
[3] http://phantomjs.org/
[0] https://cucumber.io/
[1] https://github.com/jnicklas/capybara
[2] https://github.com/teampoltergeist/poltergeist
[3] http://phantomjs.org/
This is one of the use cases for CasperJS (which in turn relies on PhantomJS)
I am looking for some tools to automatically testing web forms.
I specifically need to the the client side JS field validation and proper working, in addition to the final form submit.
Any idea?