以下のコードを使用 ( http://www.scalatest.org/user_guide/using_seleniumから取得)
import org.scalatest.matchers.ShouldMatchers
import org.scalatest.selenium.WebBrowser
import org.scalatest.FlatSpec
class BlogSpec extends FlatSpec with ShouldMatchers with WebBrowser {
implicit val webDriver: WebDriver = new HtmlUnitDriver
"The blog app home page" should "have the correct title" in {
go to (host + "index.html")
title should be ("Awesome Blog")
}
}
エラーが表示されます
Multiple markers at this line
- not found: type HtmlUnitDriver
- not found: type WebDriver
HtmlUnitDriver & WebDriver ライブラリは scalatest インストールの一部ではありません。どこからインポートできますか?