Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Latest Selenium2 version #4

Merged
merged 2 commits into from
Sep 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified DEPENDENCIES.md
Binary file not shown.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ the Selenium libraries from the [Selenium](http://docs.seleniumhq.org) project.

Version number follows Selenium's version numbers (first 3 numbers), and 4th number is reserved for e.g. issue fixes.
* More information about this library can be found in the
[Keyword Documentation](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.48.2.0/robotframework-seleniumlibrary-java-2.48.2.0-libdoc.html).
[Keyword Documentation](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.53.1.0/robotframework-seleniumlibrary-java-2.53.1.0-libdoc.html).
* For keyword completion in RIDE you can download this
[Library Specs](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.48.2.0/robotframework-seleniumlibrary-java-2.48.2.0-libdoc.xml)
[Library Specs](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.53.1.0/robotframework-seleniumlibrary-java-2.53.1.0-libdoc.xml)
and place it in your PYTHONPATH.

This Java version of SeleniumLibrary exists because of easier dependency management when Robot Framework is used in Java-projects.
Expand All @@ -28,16 +28,16 @@ your pom.xml:
<dependency>
<groupId>com.github.hi_fi</groupId>
<artifactId>robotframework-seleniumlibrary-java</artifactId>
<version>2.48.2.0</version>
<version>2.53.1.0</version>
<scope>test</scope>
</dependency>

If you cannot use the robotframework-maven-plugin you can use the
[jar-with-dependencies](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.48.2.0/robotframework-seleniumlibrary-java-2.48.2.0-jar-with-dependencies.jar),
[jar-with-dependencies](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.53.1.0/robotframework-seleniumlibrary-java-2.53.1.0-jar-with-dependencies.jar),
which contains all required libraries.

If you want more control and feel adventurous you could you use this
[jar](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.48.2.0/robotframework-seleniumlibrary-java-2.48.2.0.jar)
[jar](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.53.1.0/robotframework-seleniumlibrary-java-2.53.1.0.jar)
and provide all required libraries from this [list](DEPENDENCIES.md) on your own.

Differences
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>com.github.hi-fi</groupId>
<artifactId>robotframework-seleniumlibrary</artifactId>
<version>2.48.2.0-SNAPSHOT</version>
<version>2.53.1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Robot Framework :: SeleniumLibrary</name>
Expand All @@ -24,9 +24,9 @@
<aspectj.version>1.8.7</aspectj.version>
<java.version>1.6</java.version>
<xml.doclet.version>1.0.5</xml.doclet.version>
<robotframework.version>2.9.2</robotframework.version>
<robotframework.maven.plugin.version>1.4.5</robotframework.maven.plugin.version>
<selenium.version>2.48.2</selenium.version>
<robotframework.version>3.0.2</robotframework.version>
<robotframework.maven.plugin.version>1.4.7</robotframework.maven.plugin.version>
<selenium.version>2.53.1</selenium.version>
<keywords.class>SeleniumLibrary</keywords.class>
</properties>

Expand Down Expand Up @@ -392,7 +392,7 @@
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>1.4.7</version>
<version>${robotframework.maven.plugin.version}</version>
<executions>
<execution>
<id>html</id>
Expand Down