wdio-visual-regression-service
wdio-visual-regression-service copied to clipboard
Visual regression service for WebdriverIO.
This adds support for the BackstopJS report UI. There's a new method called BackstopJS which extends LocalCompare. When tests run the tests results are recorded in a config file for...
Have been using wdio-visual-regression for a while and it is useful for me to run the tests from cucumber and find visual comparison results. So added useful guidelines on readme...
I'm encountering a problem where tests fail on screenshot differences due to the generated image sometimes having a partial scrollbar in view and sometimes not. The problem is intermittent and...
At this stage I'm not sure what the necessary changes to make this compatible with with wdio v5 (http://beta.webdriver.io/). @zinserjan Would you be happy to have a look?
I have a this plugin setup so that screenshots are named after tests, and they go in directories based on the current commit ID. Reference screenshots go in another directory...
I got confused by the current text, thinking an array of objects needed to be passed in.
Environment ``` package.json "devDependencies": { "selenium-standalone": "^6.11.0", "wdio-mocha-framework": "^0.5.11", "wdio-screenshot": "^0.6.0", "wdio-selenium-standalone-service": "0.0.9", "wdio-visual-regression-service": "^0.8.0", "webdriverio": "^4.8.0" }, ``` ``` wdio.conf ... plugins: { 'wdio-screenshot': {} }, services: [ 'selenium-standalone',...
I have 2 config files which "inherit" from a main config file that contain certain specific specs (i.e. setup like [here](http://webdriver.io/guide/testrunner/organizesuite.html#Inherit-From-Main-Config-File)). When I run from these "inherited" config files, even...
Hello, I'm in the wdio.conf.js and I'm trying to get the size of the browser to put it in the screenshot name. I've tried like this : ``` var browserViewport...