Open Jnegrier opened 5 years ago
wdio-visual-regression-service and wdio-screenshot were modified to be compatible with wdio v5 and be integrated as one solution.
wdio-visual-regression-service
wdio-screenshot
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:
hide
remove
OLD: hide: ['h1', 'div'] NEW: hide: [$('h1'), $$('div')]
hide: ['h1', 'div']
hide: [$('h1'), $$('div')]
wdio-visual-regression-service
andwdio-screenshot
were modified to be compatible with wdio v5 and be integrated as one solution.There a change on the usage for
hide
andremove
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')]