Skip to content

Commit

Permalink
Make ScalaWebTest compatible with all implementations of Selenium Web…
Browse files Browse the repository at this point in the history
…Driver #74

 - make logger private
  • Loading branch information
DaniRey committed May 29, 2019
1 parent a15e768 commit c938c9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import scala.language.postfixOps
trait IntegrationSpec extends WebBrowser with Suite with BeforeAndAfterEach with BeforeAndAfterAllConfigMap with IntegrationSettings with Eventually {
implicit var webDriver: WebDriver = new WebClientExposingDriver(BrowserVersion.CHROME)

val logger: Logger = LoggerFactory.getLogger(getClass.getName)
private val logger: Logger = LoggerFactory.getLogger(getClass.getName)
val cookiesToBeDiscarded = new ListBuffer[Cookie]()
/**
* Configuration applied before login.
Expand Down

0 comments on commit c938c9e

Please sign in to comment.