MVN

fr.javafreelance.fluentlenium : fluentlenium

Maven & Gradle

Nov 30, 2011

FluentLenium · FluentLenium makes the writing of acceptance testing more easy and in a fluent way using the power of css selectors. Build upon Selenium WebDriver. goTo("http://mywebpage/"); fill("#firstName").with("toto"); click("#create-button");

<dependency>
    <groupId>fr.javafreelance.fluentlenium</groupId>
    <artifactId>fluentlenium</artifactId>
    <version>0.5.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of fr.javafreelance.fluentlenium : fluentlenium to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.5.3

All Versions

Choose a version of fr.javafreelance.fluentlenium : fluentlenium to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.5.x
fluentlenium-0.5.3
fluentlenium-0.5.2
fluentlenium-0.5.1
0.5
fluentlenium-0.5
0.4
fluentlenium-0.4
0.3
fluentlenium-0.3

How to add a dependency to Maven

Add the following fr.javafreelance.fluentlenium : fluentlenium maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>fr.javafreelance.fluentlenium</groupId>
    <artifactId>fluentlenium</artifactId>
    <version>0.5.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following fr.javafreelance.fluentlenium : fluentlenium gradle dependency to your build.gradle file:

implementation 'fr.javafreelance.fluentlenium:fluentlenium:0.5.3'

Gradle Kotlin DSL: Add the following fr.javafreelance.fluentlenium : fluentlenium gradle kotlin dependency to your build.gradle.kts file:

implementation("fr.javafreelance.fluentlenium:fluentlenium:0.5.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following fr.javafreelance.fluentlenium : fluentlenium sbt scala dependency to your build.sbt file:

libraryDependencies += "fr.javafreelance.fluentlenium" % "fluentlenium" % "0.5.3"