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

Latest commit

 

History

History
26 lines (21 loc) · 1.16 KB

File metadata and controls

26 lines (21 loc) · 1.16 KB

Regression testing platform

Platform contains four modules:

  • api - library which is used by a developer to run screenshot comparison in tests,
  • client - graphical user interface for platform,
  • server - core of our platform, responsible for saving screenshots and doing comparisons.
  • examples - example tests which use api library.

What do you need to run a platform

  1. Java 11.
  2. Maven.
  3. Chrome driver - to run selenium tests.
  4. nodejs - to run client module.

How to run

  1. Build whole platform with mvn clean install.
  2. Run server - please read server readme.
  3. Run client - please read client readme.

To test if everything is working properly you can run one of our example tests. After running test you should be able to see test result on GUI (http://localhost:4200/).

Documentation