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

Release/3.12.0.0 #40

Merged
merged 3 commits into from
May 17, 2018
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@ your pom.xml:
<dependency>
<groupId>com.github.hi-fi</groupId>
<artifactId>robotframework-seleniumlibrary</artifactId>
<version>3.9.1.0</version>
<version>3.12.0.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/3.9.1.0/robotframework-seleniumlibrary-3.9.1.0-jar-with-dependencies.jar),
[jar-with-dependencies](http://search.maven.org/remotecontent?filepath=com/github/hi-fi/robotframework-seleniumlibrary/3.12.0.0/robotframework-seleniumlibrary-3.12.0.0-jar-with-dependencies.jar),
which contains all required libraries.

* More information about this library can be found in the
[Keyword Documentation](http://search.maven.org/remotecontent?filepath=com/github/hi-fi/robotframework-seleniumlibrary/3.9.1.0/robotframework-seleniumlibrary-3.9.1.0.html).
[Keyword Documentation](http://search.maven.org/remotecontent?filepath=com/github/hi-fi/robotframework-seleniumlibrary/3.12.0.0/robotframework-seleniumlibrary-3.12.0.0.html).
* For keyword completion in RIDE you can download this
[Library Specs](http://search.maven.org/remotecontent?filepath=com/github/hi-fi/robotframework-seleniumlibrary/3.9.1.0/robotframework-seleniumlibrary-3.9.1.0.xml)
[Library Specs](http://search.maven.org/remotecontent?filepath=com/github/hi-fi/robotframework-seleniumlibrary/3.12.0.0/robotframework-seleniumlibrary-3.12.0.0.xml)
and place it in your PYTHONPATH.

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

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

<name>Robot Framework :: SeleniumLibrary</name>
Expand Down Expand Up @@ -66,11 +66,11 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
<aspectj.version>1.8.13</aspectj.version>
<aspectj.version>1.9.1</aspectj.version>
<java.version>1.7</java.version>
<robotframework.version>3.0.2</robotframework.version>
<robotframework.version>3.0.4</robotframework.version>
<robotframework.maven.plugin.version>1.4.7</robotframework.maven.plugin.version>
<selenium.version>3.9.1</selenium.version>
<selenium.version>3.12.0</selenium.version>
<keywords.class>SeleniumLibrary</keywords.class>
<browser>jbrowser</browser>
</properties>
Expand Down Expand Up @@ -139,7 +139,7 @@
<dependency>
<groupId>com.codeborne</groupId>
<artifactId>phantomjsdriver</artifactId>
<version>1.4.3</version>
<version>1.4.4</version>
<exclusions>
<exclusion>
<groupId>org.seleniumhq.selenium</groupId>
Expand All @@ -159,7 +159,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.12.0</version>
<version>2.18.3</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -640,4 +640,4 @@
</profile>
</profiles>

</project>
</project>
6 changes: 3 additions & 3 deletions src/test/robotframework/testsuites/UnitTests/AW3Schools.robot
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Select
[Tags] phantomjs
Open Browser https://developer.mozilla.org/en/docs/Web/HTML/Element/select#Examples ${browser} mainbrowser
Wait Until Page Contains Element xpath=//select
Select From List xpath=//select Value 3
Select From List xpath=//select Third Value
${label} Get Selected List Label xpath=//select
Should Be Equal ${label} Value 3
List Selection Should Be xpath=//select Value 3
Should Be Equal ${label} Third Value
List Selection Should Be xpath=//select Third Value

Multiple Browsers
Open Browser ${URL Application} ${browser} mainbrowser1
Expand Down