Download selenium-dsl-0.8.1.jar file

Introduction

You can download selenium-dsl-0.8.1.jar in this page.

License

Open Source

Type List

selenium-dsl-0.8.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/br.com.caelum.seleniumdsl/selenium-dsl/pom.properties
META-INF/maven/br.com.caelum.seleniumdsl/selenium-dsl/pom.xml
br.com.caelum.seleniumdsl.Browser.class
br.com.caelum.seleniumdsl.ContentTag.class
br.com.caelum.seleniumdsl.DefaultBrowser.class
br.com.caelum.seleniumdsl.DefaultContentTag.class
br.com.caelum.seleniumdsl.DefaultField.class
br.com.caelum.seleniumdsl.DefaultForm.class
br.com.caelum.seleniumdsl.DefaultPage.class
br.com.caelum.seleniumdsl.DefaultSelectField.class
br.com.caelum.seleniumdsl.Field.class
br.com.caelum.seleniumdsl.Form.class
br.com.caelum.seleniumdsl.Page.class
br.com.caelum.seleniumdsl.SelectField.class
br.com.caelum.seleniumdsl.search.ContainsAllMatcher.class
br.com.caelum.seleniumdsl.search.EqualsMatcher.class
br.com.caelum.seleniumdsl.search.Matcher.class
br.com.caelum.seleniumdsl.search.RowFinder.class
br.com.caelum.seleniumdsl.search.RowMatcher.class
br.com.caelum.seleniumdsl.search.RowVisitor.class
br.com.caelum.seleniumdsl.search.Search.class
br.com.caelum.seleniumdsl.search.TableCriteria.class
br.com.caelum.seleniumdsl.search.TableCriterion.class
br.com.caelum.seleniumdsl.table.Cell.class
br.com.caelum.seleniumdsl.table.Column.class
br.com.caelum.seleniumdsl.table.DefaultCell.class
br.com.caelum.seleniumdsl.table.DefaultColumn.class
br.com.caelum.seleniumdsl.table.DefaultRow.class
br.com.caelum.seleniumdsl.table.DefaultTable.class
br.com.caelum.seleniumdsl.table.Row.class
br.com.caelum.seleniumdsl.table.Table.class
br.com.caelum.seleniumdsl.table.layout.FullTableLayout.class
br.com.caelum.seleniumdsl.table.layout.PlainPlusThTableLayout.class
br.com.caelum.seleniumdsl.table.layout.PlainTableLayout.class
br.com.caelum.seleniumdsl.table.layout.TableLayout.class
br.com.caelum.seleniumdsl.table.layout.TableLayoutChooser.class
br.com.caelum.seleniumdsl.table.layout.TableLayoutHelper.class

Pom

selenium-dsl-0.8.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>
  <groupId>br.com.caelum.seleniumdsl</groupId>
  <artifactId>selenium-dsl</artifactId>
  <packaging>jar</packaging>
  <version>0.8.1</version>
  <name>selenium-dsl</name>
  <description>A DSL for working with Selenium and Java</description>
  <url>http://maven.apache.org</url>

  <developers>
    <developer>
      <id>fabio.kung</id>
      <name>Fabio Kung</name>
      <roles>
        <role>administrator</role>
        <role>developer</role>
      </roles>
      <timezone>-3</timezone>
    </developer>
    <developer>
      <id>filipe.sabella</id>
      <name>Filipe Sabella</name>
      <roles>
        <role>administrator</role>
        <role>developer</role>
      </roles>
      <timezone>-3</timezone>
    </developer>
    <developer>
      <id>guilherme.silveira</id>
      <name>Guilherme Silveira</name>
      <roles>
        <role>administrator</role>
        <role>developer</role>
      </roles>
      <timezone>-3</timezone>
    </developer>
    <developer>
      <id>cairesvs</id>
      <name>Caires Vinicius</name>
      <roles>
        <role>developer</role>
      </roles>
      <timezone>-3</timezone>
    </developer>
    <developer>
      <id>guilherme.dealmeidamoreira</id>
      <name>Guilherme Moreira</name>
      <roles>
        <role>developer</role>
      </roles>
      <timezone>-3</timezone>
    </developer>
    <developer>
      <id>ceci.vidageek</id>
      <name>Cecilia Fernandes</name>
      <roles>
        <role>developer</role>
      </roles>
      <timezone>-3</timezone>
    </developer>
  </developers>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.4</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jmock</groupId>
      <artifactId>jmock</artifactId>
      <version>2.4.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.openqa.selenium.client-drivers</groupId>
      <artifactId>selenium-java-client-driver</artifactId>
      <version>0.9.2-SNAPSHOT</version>
    </dependency>
  </dependencies>

  <properties>
    <java.compiler.version>1.5</java.compiler.version>
    <firefox.bin>/usr/lib/firefox/firefox-bin</firefox.bin>
  </properties>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>${java.compiler.version}</source>
          <target>${java.compiler.version}</target>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.2</version>
        <executions>
          <execution>
            <id>attach-javadoc</id>
            <phase>package</phase>
            <goals>
              <goal>jar</goal>
            </goals>
            <configuration>
              <links>
                <link>
                  http://java.sun.com/j2se/1.5/docs/api
                </link>
              </links>
            </configuration>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <skip>true</skip>
        </configuration>
        <executions>
          <execution>
            <id>run tests</id>
            <phase>test</phase>
            <goals>
              <goal>test</goal>
            </goals>
            <configuration>
              <skip>false</skip>
              <excludes>
                <exclude>
                  **/integration/**/*.java
                </exclude>
              </excludes>
            </configuration>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>dependency-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>unpack-javadoc</id>
            <phase>install</phase>
            <goals>
              <goal>unpack</goal>
            </goals>
            <configuration>
              <outputDirectory>
                ${project.build.directory}/site/javadoc
              </outputDirectory>
              <overWriteReleases>false</overWriteReleases>
              <overWriteSnapshots>
                true
              </overWriteSnapshots>
              <artifactItems>
                <artifactItem>
                  <groupId>${pom.groupId}</groupId>
                  <artifactId>
                    ${pom.artifactId}
                  </artifactId>
                  <version>${pom.version}</version>
                  <classifier>javadoc</classifier>
                </artifactItem>
              </artifactItems>
            </configuration>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <id>bin</id>
            <phase>install</phase>
            <goals>
              <goal>single</goal>
            </goals>
            <configuration>
              <descriptors>
                <descriptor>
                  ${basedir}/src/main/assembly/bin.xml
                </descriptor>
              </descriptors>
              <finalName>
                ${pom.artifactId}-${pom.version}
              </finalName>
              <workDirectory>
                ${project.build.directory}/assembly/bin
              </workDirectory>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <scm>
    <developerConnection>
      scm:svn:https://seleniumdsl.googlecode.com/svn/trunk/
    </developerConnection>
    <connection>
      http://seleniumdsl.googlecode.com/svn/trunk/
    </connection>
    <url>http://seleniumdsl.googlecode.com/svn/trunk/</url>
  </scm>

  <pluginRepositories>
    <pluginRepository>
      <id>codehaus snapshot repository</id>
      <url>http://snapshots.repository.codehaus.org/</url>
      <releases>
        <enabled>true</enabled>
      </releases>
    </pluginRepository>
  </pluginRepositories>

  <repositories>
    <repository>
      <id>openqa</id>
      <url>http://maven.openqa.org</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>

  <profiles>
    <profile>
      <id>macosx</id>
      <activation>
        <os>
          <name>Mac OS X</name>
        </os>
      </activation>
      <properties>
        <firefox.bin>
          /Applications/Firefox.app/Contents/MacOS/firefox-bin
        </firefox.bin>
        <java.compiler.version>1.5</java.compiler.version>
      </properties>
    </profile>

    <profile>
      <id>integration</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <executions>
              <execution>
                <id>run integration tests</id>
                <phase>integration-test</phase>
                <goals>
                  <goal>test</goal>
                </goals>
                <configuration>
                  <skip>false</skip>
                  <systemProperties>
                    <property>
                      <name>seleniumBrowserString</name>
                      <value>
                        *firefox ${firefox.bin}
                      </value>
                    </property>
                    <property>
                      <name>seleniumContextPath</name>
                      <value>
                        /${pom.artifactId}-${pom.version}/
                      </value>
                    </property>
                  </systemProperties>
                  <includes>
                    <include>
                      **/integration/**/*Test.java
                    </include>
                  </includes>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
    
  <distributionManagement>
    <downloadUrl>http://sourceforge.net/project/showfiles.php?group_id=227875</downloadUrl>
    <site>
      <id>seleniumdsl.sourceforge.net</id>
      <name>Selenium DSL Server</name>
      <url>scp://shell.sourceforge.net/home/groups/s/se/seleniumdsl/htdocs</url>
    </site>
    <repository>
      <id>seleniumdsl.sourceforge.net</id>
      <name>Selenium DSL Maven Server</name>
      <url>scp://shell.sourceforge.net/home/groups/s/se/seleniumdsl/htdocs/maven</url>
    </repository>
    <snapshotRepository>
      <id>seleniumdsl.sourceforge.net</id>
      <name>Selenium DSL Snapshots Server</name>
      <url>scp://shell.sourceforge.net/home/groups/s/se/seleniumdsl/htdocs/snapshots</url>
    </snapshotRepository>
  </distributionManagement>

</project>

POM Entry

<dependency>
   <groupId>br.com.caelum.seleniumdsl</groupId>
   <artifactId>selenium-dsl</artifactId>
   <version>0.8.1</version>
</dependency>

Download

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



Download selenium-dsl-0.8.1.jar file




PreviousNext

Related