Skip to content

Commit

Permalink
Release 1.9-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
martinschneider committed Sep 5, 2020
1 parent f70d8b0 commit 031ec43
Show file tree
Hide file tree
Showing 23 changed files with 79 additions and 204 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -225,3 +225,5 @@ $RECYCLE.BIN/

**/report/**
**/build/**

node_modules/
2 changes: 1 addition & 1 deletion justtestlah-applitools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>qa.justtestlah</groupId>
<artifactId>justtestlah-parent</artifactId>
<version>1.8</version>
<version>1.9-RC1</version>
</parent>
<licenses>
<license>
Expand Down
2 changes: 1 addition & 1 deletion justtestlah-awsdevicefarm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>qa.justtestlah</groupId>
<artifactId>justtestlah-parent</artifactId>
<version>1.8</version>
<version>1.9-RC1</version>
</parent>
<licenses>
<license>
Expand Down
2 changes: 0 additions & 2 deletions justtestlah-awsdevicefarm/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?xml version="1.0"?>
<configuration>
<contextListener
class="qa.justtestlah.log.ApplicationInfoEnricher" />
<appender name="STDOUT"
class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand Down
2 changes: 1 addition & 1 deletion justtestlah-browserstack/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>qa.justtestlah</groupId>
<artifactId>justtestlah-parent</artifactId>
<version>1.8</version>
<version>1.9-RC1</version>
</parent>
<licenses>
<license>
Expand Down
2 changes: 1 addition & 1 deletion justtestlah-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>qa.justtestlah</groupId>
<artifactId>justtestlah-parent</artifactId>
<version>1.8</version>
<version>1.9-RC1</version>
</parent>
<licenses>
<license>
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion justtestlah-core/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0"?>
<configuration>
<contextListener class="qa.justtestlah.log.ApplicationInfoEnricher" />
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%cyan(%d{HH:mm:ss.SSS}) %highlight(%.-1level) %cyan(%C{0}:%M:%L) %highlight(%msg) %n
Expand Down

This file was deleted.

20 changes: 20 additions & 0 deletions justtestlah-demos/demos/google.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# JUST_TEST_LAH configuration
# Check https://justtestlah.qa for a detailed documentation

# GENERAL settings
platform=web
pages.package=qa.justtestlah.examples.google.pages
steps.package=qa.justtestlah.examples.google.steps
model.package=qa.justtestlah.examples.google.model
features.directory=src/test/resources/features/google
cucumber.report.directory=target/report/cucumber
cloudprovider=local
testdata.enabled=true
testdata.filter=google
tesseract.datapath=/usr/local/Cellar/tesseract/4.1.1/share/tessdata
opencv.mode=client

# WEB settings
web.baseUrl=https://www.google.com
web.browser=chrome
web.headless=false
4 changes: 2 additions & 2 deletions justtestlah-demos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>qa.justtestlah</groupId>
<artifactId>justtestlah-parent</artifactId>
<version>1.8</version>
<version>1.9-RC1</version>
</parent>
<licenses>
<license>
Expand Down Expand Up @@ -184,4 +184,4 @@
</build>
</profile>
</profiles>
</project>
</project>
1 change: 0 additions & 1 deletion justtestlah-demos/src/main/resources/logback-aws.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0"?>
<configuration>
<contextListener class="qa.justtestlah.log.ApplicationInfoEnricher"/>
<appender name="STDOUT"
class="ch.qos.logback.core.ConsoleAppender">
<!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder
Expand Down
1 change: 0 additions & 1 deletion justtestlah-demos/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0"?>
<configuration>
<contextListener class="qa.justtestlah.log.ApplicationInfoEnricher" />
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%cyan(%d{HH:mm:ss.SSS}) %highlight(%.-1level) %cyan(%C{0}:%M:%L) %highlight(%msg) %n</pattern>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,16 @@ public class GoogleSteps extends BaseSteps {

@Given("I am on the homepage")
public void homepage() {
google.verify().enterSearchTerm(testdata(Search.class));
google.verify();
}

@Then("the Google logo is displayed")
public void checkLogo() {
assertThat(google.hasImage("google.png"));
}

@Then("the Google logo shows the correct text")
public void checkLogo() {
public void checkLogoText() {
assertThat(google.getLogoText()).isEqualTo("Google");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ Feature: Google search
@web @integration
Scenario: Search
Given I am on the homepage
#Then the Google logo shows the correct text
Then the Google logo is displayed
And the Google logo shows the correct text
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion justtestlah-galen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>qa.justtestlah</groupId>
<artifactId>justtestlah-parent</artifactId>
<version>1.8</version>
<version>1.9-RC1</version>
</parent>
<licenses>
<license>
Expand Down
2 changes: 1 addition & 1 deletion justtestlah-mobile-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>qa.justtestlah</groupId>
<artifactId>justtestlah-parent</artifactId>
<version>1.8</version>
<version>1.9-RC1</version>
</parent>
<licenses>
<license>
Expand Down
2 changes: 0 additions & 2 deletions justtestlah-mobile-tools/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?xml version="1.0"?>
<configuration>
<contextListener
class="qa.justtestlah.log.ApplicationInfoEnricher" />
<appender name="STDOUT"
class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand Down
2 changes: 1 addition & 1 deletion justtestlah-quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>qa.justtestlah</groupId>
<artifactId>justtestlah-parent</artifactId>
<version>1.8</version>
<version>1.9-RC1</version>
</parent>
<artifactId>justtestlah-quickstart</artifactId>
<name>JustTestLah! Quickstart</name>
Expand Down
2 changes: 1 addition & 1 deletion justtestlah-visual/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>qa.justtestlah</groupId>
<artifactId>justtestlah-parent</artifactId>
<version>1.8</version>
<version>1.9-RC1</version>
</parent>
<licenses>
<license>
Expand Down
2 changes: 0 additions & 2 deletions justtestlah-visual/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?xml version="1.0"?>
<configuration>
<contextListener
class="qa.justtestlah.log.ApplicationInfoEnricher" />
<appender name="STDOUT"
class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand Down
Loading

0 comments on commit 031ec43

Please sign in to comment.