wdio-visual-regression-service icon indicating copy to clipboard operation
wdio-visual-regression-service copied to clipboard

Compability with Webdriverio v5

Open Jnegrier opened this issue 5 years ago • 0 comments

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')]

Jnegrier avatar Jul 07 '19 19:07 Jnegrier