Download fluent-selenium-1.16.1.jar file

Introduction

You can download fluent-selenium-1.16.1.jar in this page.

License

Apache 2.0

Type List

fluent-selenium-1.16.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.seleniumhq.selenium.fluent/fluent-selenium/pom.properties
META-INF/maven/org.seleniumhq.selenium.fluent/fluent-selenium/pom.xml
org.seleniumhq.selenium.fluent.CompositeFluentMatcher.class
org.seleniumhq.selenium.fluent.FluentBy.class
org.seleniumhq.selenium.fluent.FluentExecutionStopped.class
org.seleniumhq.selenium.fluent.FluentMatcher.class
org.seleniumhq.selenium.fluent.FluentSelect.class
org.seleniumhq.selenium.fluent.FluentSelects.class
org.seleniumhq.selenium.fluent.FluentWebDriver.class
org.seleniumhq.selenium.fluent.FluentWebElement.class
org.seleniumhq.selenium.fluent.FluentWebElementMap.class
org.seleniumhq.selenium.fluent.FluentWebElementVistor.class
org.seleniumhq.selenium.fluent.FluentWebElements.class
org.seleniumhq.selenium.fluent.Internal.class
org.seleniumhq.selenium.fluent.Monitor.class
org.seleniumhq.selenium.fluent.Period.class
org.seleniumhq.selenium.fluent.RetryAfterStaleElement.class
org.seleniumhq.selenium.fluent.TestableString.class
org.seleniumhq.selenium.fluent.TestableValue.class
org.seleniumhq.selenium.fluent.internal.Context.class
org.seleniumhq.selenium.fluent.internal.ContextElem.class
org.seleniumhq.selenium.fluent.internal.Execution.class
org.seleniumhq.selenium.fluent.internal.NegatingFluentWebDriver.class
org.seleniumhq.selenium.fluent.internal.RetryingFluentWebDriver.class
org.seleniumhq.selenium.fluent.monitors.CodaHaleMetricsMonitor.class
org.seleniumhq.selenium.fluent.monitors.CompositeMonitor.class
org.seleniumhq.selenium.fluent.monitors.HighlightOnError.class
org.seleniumhq.selenium.fluent.monitors.ScreenShotOnError.class

Pom

fluent-selenium-1.16.1.pom file content.

<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>9</version>
    </parent>
    <groupId>org.seleniumhq.selenium.fluent</groupId>
    <artifactId>fluent-selenium</artifactId>
    <packaging>jar</packaging>
    <version>1.16.1</version>
    <name>fluent-selenium</name>
    <description>A Fluent API on top of Selenium's WebDriver API</description>
    <url>http://github.com/SeleniumHQ/fluent-selenium</url>
    <licenses>
        <license>
            <name>Apache 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
        </license>
    </licenses>
    <scm>
        <connection>scm:git:git@github.com:SeleniumHQ/fluent-selenium.git</connection>
        <developerConnection>scm:git:git@github.com:SeleniumHQ/fluent-selenium.git</developerConnection>
        <url>git@github.com:SeleniumHQ/fluent-selenium.git</url>
      <tag>fluent-selenium-1.16.1</tag>
  </scm>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.hamcrest</groupId>
                    <artifactId>hamcrest-core</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.53.0</version>
            <exclusions>
                <exclusion>
                    <groupId>org.hamcrest</groupId>
                    <artifactId>hamcrest-core</artifactId>
                </exclusion>                <exclusion>
                    <groupId>org.hamcrest</groupId>
                    <artifactId>hamcrest-library</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
          <groupId>com.codahale.metrics</groupId>
          <artifactId>metrics-core</artifactId>
          <version>3.0.2</version>
          <optional>true</optional>
        </dependency>
    </dependencies>
    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.3</version>
                    <configuration>
                        <source>1.5</source>
                        <target>1.5</target>
                        <encoding>UTF-8</encoding>
                        <optimize>false</optimize>
                        <debug>true</debug>
                        <showDeprecation>true</showDeprecation>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
        <plugins>
            <plugin>
               <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <mavenExecutorId>forked-path</mavenExecutorId>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.19</version>
                <configuration>
                    <parallel>methods</parallel>
                    <threadCount>1</threadCount>
                    <includes>
                        <include>**/elements/*</include>
                        <include>**/*Test.java</include>
                    </includes>
                </configuration>
            </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-release-plugin</artifactId>
            <version>2.5.3</version>
          </plugin>
        </plugins>
    </build>
    <developers>
        <developer>
            <id>paul-hammant</id>
            <name>Paul Hammant</name>
            <email>paul@hammant.org</email>
            <url>http://paulhammant.com</url>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>-6</timezone>
        </developer>
    </developers>
    <distributionManagement>
        <repository>
            <id>sonatype-nexus-staging</id>
            <name>Nexus Release Repository</name>
            <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

    <profiles>
        <profile>
            <id>release-sign-artifacts</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.6</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>

POM Entry

<dependency>
   <groupId>org.seleniumhq.selenium.fluent</groupId>
   <artifactId>fluent-selenium</artifactId>
   <version>1.16.1</version>
</dependency>

Download

If you think the following fluent-selenium-1.16.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download fluent-selenium-1.16.1.jar file




PreviousNext

Related