0

我有一个在 heroku 中运行的 play 2 框架应用程序。如何将 phantomjs 支持添加到 play 2 应用程序?

我知道有一个用于 phantomjs 的 heroku 的 builspack。如何将其专门添加到我现有的 play 2 应用程序中?

4

1 回答 1

0

不确定这是否是唯一的方法,但它对我们有用

  • 在你的机器上安装 phantomjs
  • 在你的 build.sbt libraryDependencies 添加"com.github.detro.ghostdriver" % "phantomjsdriver" % "1.1.0" % "test",
  • 在你的测试中WithBrowser(webDriver = classOf[org.openqa.selenium.phantomjs.PhantomJSDriver])
于 2014-06-25T08:10:02.460 回答