SeleniumHQ/docs


Project to rewrite the Selenium documentation. https://seleniumhq.github.io/docs

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.SeleniumHQ:docs:-SNAPSHOT'
	}
	dependencies {
		implementation("com.github.SeleniumHQ:docs:-SNAPSHOT")
	}
	<dependency>
	    <groupId>com.github.SeleniumHQ</groupId>
	    <artifactId>docs</artifactId>
	    <version>-SNAPSHOT</version>
	</dependency>

                            
    libraryDependencies += "com.github.SeleniumHQ" % "docs" % "-SNAPSHOT"
        
        

                            
    :dependencies [[com.github.SeleniumHQ/docs "-SNAPSHOT"]]
        
        

Readme


The contents of this repository are now part of the Selenium website

Please send your PRs and raise issues over there. Thanks!

Selenium documentation rewrite

Travis Status

We’re rewriting the Selenium documentation from scratch! You can see the current progress of our draft, and help us out by sending a patch.

Once this documentation reaches a state of relative stability and completeness, it will replace the existing Selenium documentation, which is severely lagging behind the real state that Selenium is in.

We accept patches and pull requests on GitHub. When opening a pull request, please indicate that you have signed the Contributor License Agreement which is necessary to contribute to the Selenium project.