wdio-visual-regression-service
wdio-visual-regression-service copied to clipboard
Compability with Webdriverio v5
wdio-visual-regression-service
and wdio-screenshot
were modified to be compatible with wdio v5 and be integrated as one solution.
There a change on the usage for hide
and remove
now instead of using an array of strings, an array of Webdriverio elements must be used instead:
OLD:
hide: ['h1', 'div']
NEW:
hide: [$('h1'), $$('div')]