LoginSignup
1
0

More than 5 years have passed since last update.

Play Framework 2.5でIntegrationTestが動かなくて困った話

Posted at

Play Frameworkの2.5でnewしたプロジェクトのテストが動作してくれなくて困ったのでメモ。
そのうち改善されると思いますが。

結論からいうと、Selenium周りがちゃんと動いてくれない。Firefoxでテストするよう変更して下記の通り変更した。

1. geckordrivarのダウンロードと展開

2. 最新版seleniumへの依存に変更

build.sbtのdependenciesに追加

"org.seleniumhq.selenium" % "selenium-java" % "3.0.1",
"net.sourceforge.htmlunit" % "webdriver" % "2.6"

3. テストのsetUp()に追加

System.setProperty("webdriver.gecko.driver","[geckordrivarへのパス]");

以上

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0