Skip to content

vininaag/visual-regression-testing-framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

visual-regression-testing-framework

Free Visual Regression Testing Framework - Ready To Use A visual testing framework created using BackstopJS library and ready to use. You simply add the URLs to be tested and it will test.


Contents

Install

  • Clone this repo git clone https://github.com/vininaag/visual-regression-testing-framework.git
  • npm install

Add new test

  1. Lets try to do github signup page https://github.com/join
  2. All our test files we keep under src\tests folder. Create file signup.tests.js and add scenario(test) for signup page like below.
module.exports = [
  {
    label: 'Github SignUp Page',
    url: 'https://github.com/join',
    readySelector: "div[role='main']",
    selectors: ['div[role="main"]']
  }
];

Note: you can add multiple scenarios(tests) with comma seperated.

Add reference image

To add reference image we need to run the tests.

  1. Run npm run test
  2. One test (added above) will fail saying It doesn't have any reference image for signup page . Report will be like below
    One Failed Report
  3. Run npm run approve and it will take the current result as reference image. Now our test has reference image. Note: All reference images will be present inside src/bitmaps_reference

Run the tests

  1. Run npm run test All tests will pass. Complete report will look like below Full Report


####Below features are already available & works. Documentation will be added soon.

  • Run a single test (npm run test -- SignUp ) will run all tests that has SignUp in their title.

  • Configuration browser, size of browser & others.

  • How to use cookies.