Questions tagged [scalatest]

Scala's testing tool for quality assurance

Executing tests in parallel using FlatSpec, Selenium DSL, and Spring framework

While working with Scalatest, FlatSpec, Spring, Selenium DSL and BeforeAndAfterAll, I noticed that one of these components is interfering with the proper functionality of ParallelTestExecution. Here is what happens when running a class with two tests: On ...

Executing close() function after all tests in ScalaTest with Selenium have finished running

I currently have several scala tests running, but I am unsure of how to properly close or quit the webdriver once the test run is complete. I know about beforeAndAfterAll, but it seems to act on each test class individually, while I only want to close the ...