Automating form testing?
Moderator: General Moderators
Automating form testing?
When I'm developing applications, I find myself constantly filling in forms with the same stupid information, making sure the form works, then checking to see if the data was entered correctly into the database. Is there some kind of software that can automate filling this information in? I tried iMacros, but they wanted some ridiculous amount of money. I need to be able to run like 20 different scenarios through a form and see if all is gravy. Anybody know of something that can do this?
Re: Automating form testing?
I think simpletest can test forms
http://simpletest.org/en/form_testing_d ... ation.html
of course that means writing tests. But it makes rerunning them easy
http://simpletest.org/en/form_testing_d ... ation.html
of course that means writing tests. But it makes rerunning them easy
Re: Automating form testing?
you want to test that html form is working or the php code behind it?
Re: Automating form testing?
both
EDIT: thanks matthijs I think that's what I need
EDIT: thanks matthijs I think that's what I need
- andre_c
- Forum Contributor
- Posts: 412
- Joined: Sun Feb 29, 2004 6:49 pm
- Location: Salt Lake City, Utah
Re: Automating form testing?
You should also check out selenium: http://selenium.openqa.org/
Re: Automating form testing?
I forgot about selenium. I remember hearing about it when I was doing unit testing in django. I'll check it out... thanks!