Skip to content

Commit

Permalink
Merge pull request #440 from retest/release/v1.7.0
Browse files Browse the repository at this point in the history
Release/v1.7.0
  • Loading branch information
beatngu13 authored Nov 22, 2019
2 parents ed129ff + fbf1d85 commit d82282b
Show file tree
Hide file tree
Showing 6 changed files with 89 additions and 80 deletions.
18 changes: 14 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,28 @@ Table of Contents

### Breaking Changes

* The default of how screenshots are created has changed from full page to viewport only. These two options are now available to set globally via properties and per test individually via `RecheckWebOptions`.

### Bug Fixes

### New Features

* Screenshot creation can now be configured via the `RecheckOptions` or globally via `de.retest.recheck.web.screenshot.provider`.

### Improvements

* `AutocheckingRecheckDriver` and thus the `RecheckDriver` now implement the `RecheckLifecycle`, meaning that they can be used with the JUnit extensions.

--------------------------------------------------------------------------------


[1.7.0] (2019-11-21)
--------------------

### Breaking Changes

* The default of how screenshots are created has changed from full page to viewport only. These two options are now available to set globally via properties and per test individually via `RecheckWebOptions`.

### New Features

* Screenshot creation can now be configured via the `RecheckOptions` or globally via `de.retest.recheck.web.screenshot.provider`.


--------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ You can open the `report` using [***review***](https://retest.de/review/) or the

### recheck-web seems to be slow when executing. What can I do about that?

recheck-web itself is not slow. But screenshot creation is. We are currently working on that. In the next release, per default the screenshot will be created without scrolling. And you will have an option to turn screenshots off completely. Lucky enough, we only use the screenshot for documentation, not for the actual comparison.
recheck-web itself is not slow. But screenshot creation is. Lucky enough, we only use the screenshot for documentation, not for the actual comparison. Per default, we only create a screenshot of the given viewport and you can also disable the screenshot creation completely. For more information, please refer to our [documentation](https://docs.retest.de/recheck-web/usage/configuration/).


### What does the recheck warning mean?
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>de.retest</groupId>
<artifactId>recheck-web</artifactId>
<version>1.7.0-SNAPSHOT</version>
<version>1.8.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>recheck - web</name>
Expand Down Expand Up @@ -78,7 +78,7 @@
<dependency>
<groupId>de.retest</groupId>
<artifactId>recheck</artifactId>
<version>1.6.0</version>
<version>1.7.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -152,14 +152,14 @@
<dependency>
<groupId>de.retest</groupId>
<artifactId>recheck-junit-jupiter-extension</artifactId>
<version>1.6.0</version>
<version>1.7.0</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>de.retest</groupId>
<artifactId>recheck-junit-4-extension</artifactId>
<version>1.6.0</version>
<version>1.7.0</version>
<scope>test</scope>
</dependency>

Expand Down
1 change: 0 additions & 1 deletion src/test/java/de/retest/web/it/WikipediaIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ void setUp() throws Exception {

@Test
void myWikipediaTest() throws Exception {
re.startTest();
// Switch to "expected" subfolder to restore original page.
driver.get( PageFactory.toPageUrlString( "wikipedia/actual/wikipedia-characterization-test.html" ) );
re.check( driver, "characterization-testing-page" );
Expand Down
Loading

0 comments on commit d82282b

Please sign in to comment.