Automated UI testing in a Play Scala Application using FluentLenium
Reading Time: 2 minutes In this blog I am going to demonstrate how to do Automated UI testing of a Play Scala application using FluentLenium. FluentLenium is a framework that helps to write Selenium tests. FluentLenium provides us a fluent interface to the Selenium Web Driver. FluentLenium allows us use the assertion framework we like, either jUnit assertions or Fest-assert. To start building testcases using FluentLenium follow the below steps: 1) Add following dependencies in build.sbt file. “org.seleniumhq.selenium” Continue Reading