Skip to content
This repository was archived by the owner on Sep 8, 2022. It is now read-only.

Commit 4d0fd14

Browse files
author
apegam
committed
[jgitflow-maven-plugin] merging 'release/0.1.8' into 'master'
2 parents dddeba9 + 9c5ba3c commit 4d0fd14

File tree

31 files changed

+886
-101
lines changed

31 files changed

+886
-101
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ npm-debug.log
1717
.pmd
1818
.checkstyle
1919
.idea
20-
.iml
20+
*.iml
2121
.DS_Store
2222
.rubygems
2323
.sass-cache

example-project/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<groupId>io.wcm.qa</groupId>
3232
<artifactId>io.wcm.qa.galenium.example</artifactId>
3333
<packaging>jar</packaging>
34-
<version>0.1.7-SNAPSHOT</version>
34+
<version>0.1.8</version>
3535
<description>Test automation example.</description>
3636

3737
<properties>
@@ -68,7 +68,7 @@
6868
<dependency>
6969
<groupId>io.wcm.qa</groupId>
7070
<artifactId>io.wcm.qa.galenium.galenium</artifactId>
71-
<version>0.1.7-SNAPSHOT</version>
71+
<version>0.1.8</version>
7272
<exclusions>
7373
<exclusion>
7474
<groupId>org.slf4j</groupId>
@@ -79,7 +79,7 @@
7979
<dependency>
8080
<groupId>io.wcm.qa</groupId>
8181
<artifactId>io.wcm.qa.galenium.logging</artifactId>
82-
<version>0.1.7-SNAPSHOT</version>
82+
<version>0.1.8</version>
8383
</dependency>
8484

8585
</dependencies>

example-project/src/main/resources/RepositoryMap.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
<root>
2323
<windows>
2424
<driver id="googlechrome">
25-
<version id="2.30">
25+
<version id="2.32">
2626
<bitrate thirtytwobit="true" sixtyfourbit="true">
27-
<filelocation>http://chromedriver.storage.googleapis.com/2.30/chromedriver_win32.zip</filelocation>
27+
<filelocation>http://chromedriver.storage.googleapis.com/2.32/chromedriver_win32.zip</filelocation>
2828
<hash>847bf2497eab7aac5cf0622e49939f976087aae4</hash>
2929
<hashtype>sha1</hashtype>
3030
</bitrate>
@@ -47,14 +47,14 @@
4747
</windows>
4848
<linux>
4949
<driver id="googlechrome">
50-
<version id="2.30">
50+
<version id="2.32">
5151
<bitrate sixtyfourbit="true">
52-
<filelocation>http://chromedriver.storage.googleapis.com/2.30/chromedriver_linux64.zip</filelocation>
52+
<filelocation>http://chromedriver.storage.googleapis.com/2.32/chromedriver_linux64.zip</filelocation>
5353
<hash>917f9e939e816c4f4487b2ebfddb21ecc77a4a9c</hash>
5454
<hashtype>sha1</hashtype>
5555
</bitrate>
5656
<bitrate thirtytwobit="true">
57-
<filelocation>http://chromedriver.storage.googleapis.com/2.30/chromedriver_linux32.zip</filelocation>
57+
<filelocation>http://chromedriver.storage.googleapis.com/2.32/chromedriver_linux32.zip</filelocation>
5858
<hash>b4bc392b16a62988cf0aa8e609e7edcc7a13ecc8</hash>
5959
<hashtype>sha1</hashtype>
6060
</bitrate>
@@ -63,9 +63,9 @@
6363
</linux>
6464
<osx>
6565
<driver id="googlechrome">
66-
<version id="2.30">
66+
<version id="2.32">
6767
<bitrate thirtytwobit="true" sixtyfourbit="true">
68-
<filelocation>http://chromedriver.storage.googleapis.com/2.30/chromedriver_mac64.zip</filelocation>
68+
<filelocation>http://chromedriver.storage.googleapis.com/2.32/chromedriver_mac64.zip</filelocation>
6969
<hash>8343cb5ed784c1c23c90ecfa86da0dc058d68c89</hash>
7070
<hashtype>sha1</hashtype>
7171
</bitrate>

example-project/src/test/java/io/wcm/qa/galenium/example/PageObjectExampleIT.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@
3737
import io.wcm.qa.galenium.listeners.RetryAnalyzer;
3838
import io.wcm.qa.galenium.util.TestDevice;
3939

40-
40+
/**
41+
* Showcase page object approach.
42+
*/
4143
public class PageObjectExampleIT extends AbstractExampleBase {
4244

4345
private Homepage homepage;

example-project/src/test/java/io/wcm/qa/galenium/example/VerificationIT.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@
4141
import io.wcm.qa.galenium.verification.PageTitleVerification;
4242
import io.wcm.qa.galenium.verification.VisibilityVerification;
4343
import io.wcm.qa.galenium.verification.VisualVerification;
44+
import io.wcm.qa.galenium.verification.base.Verification;
4445

46+
/**
47+
* Showcase {@link Verification} approach.
48+
*/
4549
public class VerificationIT extends AbstractExampleBase {
4650

4751
private static final String CSS_CLASS_NAVLINK_ACTIVE = "navlink-active";
326 Bytes
Loading
-2.56 KB
Loading
-6.2 KB
Loading
-1 Bytes
Loading
-339 Bytes
Loading

0 commit comments

Comments
 (0)