- The purpose of this repository is to demonstrate the use of
Leonium
, aSelenium
wrapper framework.
- This dependency is hosted on packagecloud.io
- Click here to view the official java docs for this project.
- Because this dependency is hosted on a private server, not MavenCentral, the
pom.xml
must be configured to search in the proper repository.
<repositories>
<repository>
<id>git-leon-utils</id>
<url>https://packagecloud.io/git-leon/utils/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
- To use this project, add the dependency to your
pom.xml
<dependency>
<groupId>com.github.git-leon</groupId>
<artifactId>leonium</artifactId>
<version>2.4.1</version>
</dependency>