|
|
|
|
|
by SEJeff
4509 days ago
|
|
There are two types of tests. unit tests - most common and are tightly tied to the code.
integration tests - simulate example user behavior and test the pieces work together as expected. For this type of app, selenium is the best tool for the job and splinter is an amazing python abstraction ontop of selenium. For instance, I have Jenkins setup splinter to run chrome and Firefox tests headlessly using a frame buffer (xvfb) to test the apps I'm responsible for as part of $dayjob. Both types of tests are necessary and equally important. http://splinter.cobrateam.info |
|
I've not come across Splinter before, that looks interesting. I've been using PhantomJS via CasperJS but my tests so far have been brittle...