Skip to content

1.4.1

Choose a tag to compare

@dzaiats dzaiats released this 04 Dec 16:13
· 741 commits to master since this release

Visual testing for list of elements

Latest version allows to perform smart advanced verification for list of elements on the web or mobile page.
What You can do:

  • validate if elements are aligned in Grid view / List view
  • validate if elements are not overlapped with each other and have equal sizes
  • validate if elements are placed in one container and overlapped it

These feature allows to cover many different test cases that was impossible to test automatically before. Only 1-2 seconds and result is ready. This is awesome!

Example of usage:

    boolean result = responsiveValidator.init("Grid validation")
            .findElements(page.images())
            .alignedAsGrid(3, 4)
            .areNotOverlappedWithEachOther()
            .withSameSize()
            .insideOf(page.container(), "List View container")
            .drawMap()
            .validate();

   responsiveValidator.generateReport("Home Page");

Upgraded reporting.

In the version 1.4.1 we've added ability to set the Scenario name and Reports name.

Support for EDGE browser

Now You can easy run the tests on EDGE browser. Just need to set the BROWSER=EDGE and download appropriate MicrosoftWebDriver.exe with direct support for EDGE browser