Skip to content

Instantly share code, notes, and snippets.

@seratch
Last active December 30, 2015 05:19
Show Gist options
  • Save seratch/7781670 to your computer and use it in GitHub Desktop.
Save seratch/7781670 to your computer and use it in GitHub Desktop.
Trying FluentLenium
libraryDependencies ++= Seq(
"org.fluentlenium" % "fluentlenium-core" % "0.9.1",
"org.fluentlenium" % "fluentlenium-festassert" % "0.9.1"
)
import org.fluentlenium.core._
val driver = new org.openqa.selenium.firefox.FirefoxDriver
object Firefox extends Fluent(driver)
Firefox.goTo("http://www.google.com")
driver.quit
:q
@seratch
Copy link
Author

seratch commented Dec 4, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment