fluentlenium
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fluentlenium</groupId> <artifactId>fluentlenium</artifactId> <version>0.5.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.fluentlenium</groupId> <artifactId>fluentlenium-parent</artifactId> <version>0.5.4</version> </parent> <groupId>org.fluentlenium</groupId> <artifactId>fluentlenium</artifactId> <packaging>jar</packaging> <name>FluentLenium</name> <description>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"); </description> <url>https://github.com/FluentLenium/FluentLenium</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <organization> <name>AConsulting</name> <url>http://www.java-freelance.fr</url> </organization> <developers> <developer> <id>Mlemee</id> <name>Mathilde Lemee</name> <email>mathilde.lemee@gmail.com</email> <url>http://www.fluentlenium.org</url> <organization>AConsulting</organization> <organizationUrl>http://www.java-freelance.fr</organizationUrl> <roles> <role>developer</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>org.fluentlenium</groupId> <artifactId>fluentlenium-festassert</artifactId> <version>${project.version}</version> </dependency> </dependencies> </project>