unic / ScalaWebTest

ScalaWebTest is a library for writing ScalaTest/Selenium based integration tests for web applications. It helps you with your basic setup and provides a new and very efficient approach to testing.
https://scalawebtest.org
Apache License 2.0
29 stars 9 forks source link

Replace JavaConverters with JdkConverters #92

Closed DaniRey closed 5 years ago

DaniRey commented 5 years ago

With Scala 2.13 JavaConverters was deprecated, providing JdkConverters as alternative.

The where backported to 2.11 and 2.12 as part of the Scala Collection Compat library. Use this to get rid of the warnings https://github.com/scala/scala-collection-compat/pull/217

DaniRey commented 5 years ago

Good for project beginners, not for Scala beginners.