Download selenium-chrome-driver-2.0b1.jar file

Introduction

You can download selenium-chrome-driver-2.0b1.jar in this page.

License

The Apache Software License, Version 2.0

Type List

selenium-chrome-driver-2.0b1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.seleniumhq.selenium/selenium-chrome-driver/pom.properties
META-INF/maven/org.seleniumhq.selenium/selenium-chrome-driver/pom.xml
chrome-extension.zip
org.openqa.selenium.chrome.ChromeBinary.class
org.openqa.selenium.chrome.ChromeCommandExecutor.class
org.openqa.selenium.chrome.ChromeDriver.class
org.openqa.selenium.chrome.ChromeExtension.class
org.openqa.selenium.chrome.ChromeNotRunningException.class
org.openqa.selenium.chrome.ChromeProfile.class
org.openqa.selenium.chrome.ChromeWebElement.class
org.openqa.selenium.chrome.FatalChromeException.class

Pom

selenium-chrome-driver-2.0b1.pom file content.

<?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.0b1</version>
	</parent>
	<artifactId>selenium-chrome-driver</artifactId>
	<name>selenium-chrome-driver</name>

	<dependencies>
		<dependency>
			<groupId>org.seleniumhq.selenium</groupId>
			<artifactId>selenium-remote-client</artifactId>
			<version>${project.version}</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_chrome_extension</id>
						<phase>generate-resources</phase>
						<configuration>
							<tasks>
								<!-- 1. Execute rake to build ../build/chrome/chrome.jar ... -->
								<condition property="goExecutable" value="go.bat" else="go">
									<os family="windows" />
								</condition>
								<exec dir=".." executable="${goExecutable}">
									<arg value="//chrome:chrome" />
								</exec>
								<!-- 2. Extract everything but the class files and MANIFEST.MF to target/classes ... -->
								<mkdir dir="target/classes" />
								<unjar src="../build/chrome/chrome.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>

POM Entry

<dependency>
   <groupId>org.seleniumhq.selenium</groupId>
   <artifactId>selenium-chrome-driver</artifactId>
   <version>2.0b1</version>
</dependency>

Download

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



Download selenium-chrome-driver-2.0b1.jar file




PreviousNext

Related