How to automate tests with Play and Selenium

How to automate tests with Play and Selenium

Even when our application passes all unit tests, it doesn’t mean that it will work as a whole system. One way of making sure that it works as a whole, is testing it from the user’s perspective. The easiest way of performing this type of test is manually...
Creating reusable tests for PlayFramework

Creating reusable tests for PlayFramework

Writing tests isn’t the most interesting part of developing a new feature, yet it’s an important one. Well written tests will help you make sure that your newly added feature won’t break any other functionality. However while testing DAOs and...