组织ID: |
org.seleniumhq.selenium |
项目ID: |
selenium-firefox-driver |
版本: |
2.0a6 |
最后修改时间: |
2019-10-23 11:55:53 |
包类型: |
jar |
标题: |
selenium-firefox-driver |
大小: |
448.38KB |
|
Maven引入代码: |
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-firefox-driver</artifactId>
<version>2.0a6</version>
</dependency>
|
Gradle引入代码: |
org.seleniumhq.selenium:selenium-firefox-driver:2.0a6
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="Windows-1252"?>
<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.seleniumhq.selenium</groupId>
<artifactId>selenium-parent</artifactId>
<version>2.0a6</version>
</parent>
<artifactId>selenium-firefox-driver</artifactId>
<name>selenium-firefox-driver</name>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
</dependency>
<!-- Test dependencies ... -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-common</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>test/java</testSourceDirectory>
<plugins>
<!-- See http://maven.apache.org/plugins/maven-antrun-plugin -->
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>create_webdriver_extension</id>
<phase>generate-resources</phase>
<configuration>
<tasks>
<!-- 1. Execute rake to build ../build/firefox/firefox.jar ... -->
<condition property="goExecutable" value="go.bat" else="go">
<os family="windows" />
</condition>
<exec dir=".." executable="${goExecutable}">
<arg value="//firefox:firefox" />
</exec>
<!-- 2. Extract everything but the class files and MANIFEST.MF to target/classes ... -->
<mkdir dir="target/classes" />
<unjar src="../build/firefox/firefox.jar" dest="target/classes">
<patternset>
<exclude name="**/*.class" />
<exclude name="META-INF/MANIFEST.MF" />
</patternset>
</unjar>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- See http://maven.apache.org/plugins/maven-surefire-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*TestSuite.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
amd64/x_ignore_nofocus.so
org.openqa.selenium.firefox.ExtensionConnection.class
org.openqa.selenium.firefox.FirefoxBinary$OutputWatcher.class
org.openqa.selenium.firefox.FirefoxBinary.class
org.openqa.selenium.firefox.FirefoxDriver$1.class
org.openqa.selenium.firefox.FirefoxDriver$2.class
org.openqa.selenium.firefox.FirefoxDriver$FirefoxAlert.class
org.openqa.selenium.firefox.FirefoxDriver$FirefoxTargetLocator.class
org.openqa.selenium.firefox.FirefoxDriver$LazyCommandExecutor.class
org.openqa.selenium.firefox.FirefoxDriver.class
org.openqa.selenium.firefox.FirefoxProfile$1.class
org.openqa.selenium.firefox.FirefoxProfile.class
org.openqa.selenium.firefox.FirefoxWebElement.class
org.openqa.selenium.firefox.internal.ClasspathExtension.class
org.openqa.selenium.firefox.internal.Executable$1.class
org.openqa.selenium.firefox.internal.Executable.class
org.openqa.selenium.firefox.internal.Extension.class
org.openqa.selenium.firefox.internal.FileExtension$1.class
org.openqa.selenium.firefox.internal.FileExtension.class
org.openqa.selenium.firefox.internal.Lock.class
org.openqa.selenium.firefox.internal.NewProfileExtensionConnection.class
org.openqa.selenium.firefox.internal.ProfilesIni$1.class
org.openqa.selenium.firefox.internal.ProfilesIni.class
org.openqa.selenium.firefox.internal.SocketLock.class
org.openqa.selenium.firefox.internal.Streams.class
org.openqa.selenium.firefox.NotConnectedException.class
org.openqa.selenium.firefox.Preferences.class
org.openqa.selenium.firefox.UnableToCreateProfileException.class
webdriver.xpi
x86/x_ignore_nofocus.so
META-INF/maven/org.seleniumhq.selenium/selenium-firefox-driver/pom.xml
META-INF/maven/org.seleniumhq.selenium/selenium-firefox-driver/pom.properties
|
依赖Jar: |
selenium-remote-client-${project.version}.jar
/org.seleniumhq.selenium/selenium-remote-client/${project.version}
查看selenium-remote-client所有版本文件
commons-io-1.4.jar
/commons-io/commons-io/1.4
查看commons-io所有版本文件
selenium-common-${project.version}.jar
/org.seleniumhq.selenium/selenium-common/${project.version}
查看selenium-common所有版本文件
|