0

以下のコードを使用 ( 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 インストールの一部ではありません。どこからインポートできますか?

4

1 に答える 1

2

Seleniumの依存関係が必要でした(http://seleniumhq.org/download/maven.html):

<dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.24.1</version>
    </dependency>  
于 2012-12-11T10:39:44.667 に答える