Closed
Description
The plugin seems to compare the images from previous run instead of a baseline image. Do we have a setting for which image should we compare the current run? It's getting the wrong images for me as the baseline.
Do I have to run until I get all correct images with:
cy.get('element').matchImage({updateImages: true,maxDiffThreshold: 0.05,forceDeviceScaleFactor: false})
Once I have them I can remove the updateImages
to have the images as fixed?
cy.get('element').matchImage({maxDiffThreshold: 0.05,forceDeviceScaleFactor: false})
Or is there an additional setting where we could save a baseline image into another folder then call and compare from the current run?