├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── --bug-report.md │ ├── --documentation.md │ ├── --feature-request.md │ └── --question.md └── stale.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGES.md ├── README.md ├── docs ├── CONTRIBUTING.md ├── OPTIONS.md ├── OUTPUT.md └── images │ ├── examplePage-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png │ ├── examplePage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png │ ├── examplePage-blockout-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png │ ├── examplePage-blockout-iPhoneXSimulator-375x812.png │ ├── examplePage-chrome-latest-1366x768.png │ ├── examplePage-fail-chrome-latest-1366x768.png │ ├── examplePage-iPhoneXSimulator-375x812.png │ ├── examplePageFail-chrome-latest-1366x768.png │ ├── firstButtonElement-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png │ ├── firstButtonElement-chrome-latest-1366x768.png │ ├── firstButtonElement-fail-chrome-latest-1366x768.png │ ├── firstButtonElement-iPhoneXSimulator-375x812.png │ ├── fullPage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png │ ├── fullPage-chrome-latest-1366x768.png │ ├── fullPage-fail-chrome-latest-1366x768.png │ ├── fullPage-iPhoneXSimulator-375x812.png │ ├── powered-by-saucelabs.png │ └── protractor-support.jpg ├── lib ├── index.ts ├── interfaces.ts ├── protractor.image.compare.ts └── utils.ts ├── package.json ├── test ├── .DS_Store ├── conf │ ├── protractor.local.android.conf.js │ ├── protractor.local.desktop.conf.js │ ├── protractor.local.init.conf.js │ ├── protractor.local.ios.conf.js │ ├── protractor.saucelabs.conf.js │ ├── protractor.shared.conf.js │ └── tsconfig.e2e.json ├── images │ └── saucelabs │ │ ├── android_googleapi_emulator │ │ ├── examplePage-AndroidGoogleApiEmulator6.0ChromeDriver-384x640.png │ │ ├── examplePage-AndroidGoogleApiEmulator6.0NativeWebScreenshot-384x640.png │ │ ├── firstButtonElement-AndroidGoogleApiEmulator6.0ChromeDriver-384x640.png │ │ ├── firstButtonElement-AndroidGoogleApiEmulator6.0NativeWebScreenshot-384x640.png │ │ ├── fullPage-AndroidGoogleApiEmulator6.0ChromeDriver-384x640.png │ │ └── fullPage-AndroidGoogleApiEmulator6.0NativeWebScreenshot-384x640.png │ │ ├── desktop_chrome │ │ ├── examplePage-chrome-latest-1366x768.png │ │ ├── examplePageFail-chrome-latest-1366x768.png │ │ ├── firstButtonElement-chrome-latest-1366x768.png │ │ └── fullPage-chrome-latest-1366x768.png │ │ ├── desktop_firefox │ │ ├── examplePage-firefox_latest-1366x768.png │ │ ├── firstButtonElement-firefox_latest-1366x768.png │ │ └── fullPage-firefox_latest-1366x768.png │ │ ├── desktop_internet_explorer │ │ ├── examplePage-IE11-1366x768.png │ │ ├── firstButtonElement-IE11-1366x768.png │ │ └── fullPage-IE11-1366x768.png │ │ ├── desktop_microsoftedge │ │ ├── examplePage-Microsoft_Edge_latest-1366x768.png │ │ ├── examplePage-Microsoft_Edge_latest-1366x769.png │ │ ├── firstButtonElement-Microsoft_Edge_latest-1366x768.png │ │ ├── firstButtonElement-Microsoft_Edge_latest-1366x769.png │ │ ├── fullPage-Microsoft_Edge_latest-1366x768.png │ │ └── fullPage-Microsoft_Edge_latest-1366x769.png │ │ ├── desktop_safari │ │ ├── examplePage-MojaveSafariLatest-1366x768.png │ │ ├── examplePage-SierraSafari11-1366x768.png │ │ ├── firstButtonElement-MojaveSafariLatest-1366x768.png │ │ ├── firstButtonElement-SierraSafari11-1366x768.png │ │ ├── fullPage-MojaveSafariLatest-1366x768.png │ │ └── fullPage-SierraSafari11-1366x768.png │ │ ├── google_pixel_c_googleapi_emulator │ │ ├── examplePage-GooglePixelCTablet7.1ChromeDriver-900x1280.png │ │ ├── firstButtonElement-GooglePixelCTablet7.1ChromeDriver-900x1280.png │ │ └── fullPage-GooglePixelCTablet7.1ChromeDriver-900x1280.png │ │ ├── google_pixel_googleapi_emulator │ │ ├── examplePage-GooglePixelGoogleAPIEmulator7.1ChromeDriver-360x640.png │ │ ├── examplePage-GooglePixelGoogleAPIEmulator7.1NativeWebScreenshot-360x640.png │ │ ├── examplePage-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png │ │ ├── examplePage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png │ │ ├── firstButtonElement-GooglePixelGoogleAPIEmulator7.1ChromeDriver-360x640.png │ │ ├── firstButtonElement-GooglePixelGoogleAPIEmulator7.1NativeWebScreenshot-360x640.png │ │ ├── firstButtonElement-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png │ │ ├── firstButtonElement-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png │ │ ├── fullPage-GooglePixelGoogleAPIEmulator7.1ChromeDriver-360x640.png │ │ ├── fullPage-GooglePixelGoogleAPIEmulator7.1NativeWebScreenshot-360x640.png │ │ ├── fullPage-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png │ │ └── fullPage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png │ │ ├── ipad_air_simulator │ │ ├── examplePage-iPadAirSimulator-768x1024.png │ │ ├── firstButtonElement-iPadAirSimulator-768x1024.png │ │ └── fullPage-iPadAirSimulator-768x1024.png │ │ ├── ipad_pro_(12.9_inch)_(2nd_generation)_simulator │ │ ├── examplePage-iPadPro12.9.2nd-1024x1366.png │ │ ├── firstButtonElement-iPadPro12.9.2nd-1024x1366.png │ │ └── fullPage-iPadPro12.9.2nd-1024x1366.png │ │ ├── iphone_11_simulator │ │ ├── examplePage-iPhone11Simulator-414x896.png │ │ ├── firstButtonElement-iPhone11Simulator-414x896.png │ │ └── fullPage-iPhone11Simulator-414x896.png │ │ ├── iphone_8_simulator │ │ ├── examplePage-iPhone8Simulator-375x667.png │ │ ├── firstButtonElement-iPhone8Simulator-375x667.png │ │ └── fullPage-iPhone8Simulator-375x667.png │ │ ├── iphone_x_simulator │ │ ├── examplePage-iPhoneXSimulator-375x812.png │ │ ├── firstButtonElement-iPhoneXSimulator-375x812.png │ │ └── fullPage-iPhoneXSimulator-375x812.png │ │ └── samsung_galaxy_s9_wqhd_googleapi_emulator │ │ ├── examplePage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0ChromeDriver-360x740.png │ │ ├── examplePage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0NativeWebScreenshot-360x740.png │ │ ├── firstButtonElement-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0ChromeDriver-360x740.png │ │ ├── firstButtonElement-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0NativeWebScreenshot-360x740.png │ │ ├── fullPage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0ChromeDriver-360x740.png │ │ └── fullPage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0NativeWebScreenshot-360x740.png ├── init.spec.ts └── main.spec.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/.github/ISSUE_TEMPLATE/--bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/.github/ISSUE_TEMPLATE/--documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/.github/ISSUE_TEMPLATE/--feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/.github/ISSUE_TEMPLATE/--question.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/CHANGES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/README.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/OPTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/OPTIONS.md -------------------------------------------------------------------------------- /docs/OUTPUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/OUTPUT.md -------------------------------------------------------------------------------- /docs/images/examplePage-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/examplePage-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png -------------------------------------------------------------------------------- /docs/images/examplePage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/examplePage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png -------------------------------------------------------------------------------- /docs/images/examplePage-blockout-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/examplePage-blockout-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png -------------------------------------------------------------------------------- /docs/images/examplePage-blockout-iPhoneXSimulator-375x812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/examplePage-blockout-iPhoneXSimulator-375x812.png -------------------------------------------------------------------------------- /docs/images/examplePage-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/examplePage-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /docs/images/examplePage-fail-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/examplePage-fail-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /docs/images/examplePage-iPhoneXSimulator-375x812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/examplePage-iPhoneXSimulator-375x812.png -------------------------------------------------------------------------------- /docs/images/examplePageFail-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/examplePageFail-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /docs/images/firstButtonElement-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/firstButtonElement-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png -------------------------------------------------------------------------------- /docs/images/firstButtonElement-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/firstButtonElement-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /docs/images/firstButtonElement-fail-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/firstButtonElement-fail-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /docs/images/firstButtonElement-iPhoneXSimulator-375x812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/firstButtonElement-iPhoneXSimulator-375x812.png -------------------------------------------------------------------------------- /docs/images/fullPage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/fullPage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png -------------------------------------------------------------------------------- /docs/images/fullPage-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/fullPage-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /docs/images/fullPage-fail-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/fullPage-fail-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /docs/images/fullPage-iPhoneXSimulator-375x812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/fullPage-iPhoneXSimulator-375x812.png -------------------------------------------------------------------------------- /docs/images/powered-by-saucelabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/powered-by-saucelabs.png -------------------------------------------------------------------------------- /docs/images/protractor-support.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/docs/images/protractor-support.jpg -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/lib/interfaces.ts -------------------------------------------------------------------------------- /lib/protractor.image.compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/lib/protractor.image.compare.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/package.json -------------------------------------------------------------------------------- /test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/.DS_Store -------------------------------------------------------------------------------- /test/conf/protractor.local.android.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/conf/protractor.local.android.conf.js -------------------------------------------------------------------------------- /test/conf/protractor.local.desktop.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/conf/protractor.local.desktop.conf.js -------------------------------------------------------------------------------- /test/conf/protractor.local.init.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/conf/protractor.local.init.conf.js -------------------------------------------------------------------------------- /test/conf/protractor.local.ios.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/conf/protractor.local.ios.conf.js -------------------------------------------------------------------------------- /test/conf/protractor.saucelabs.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/conf/protractor.saucelabs.conf.js -------------------------------------------------------------------------------- /test/conf/protractor.shared.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/conf/protractor.shared.conf.js -------------------------------------------------------------------------------- /test/conf/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/conf/tsconfig.e2e.json -------------------------------------------------------------------------------- /test/images/saucelabs/android_googleapi_emulator/examplePage-AndroidGoogleApiEmulator6.0ChromeDriver-384x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/android_googleapi_emulator/examplePage-AndroidGoogleApiEmulator6.0ChromeDriver-384x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/android_googleapi_emulator/examplePage-AndroidGoogleApiEmulator6.0NativeWebScreenshot-384x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/android_googleapi_emulator/examplePage-AndroidGoogleApiEmulator6.0NativeWebScreenshot-384x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/android_googleapi_emulator/firstButtonElement-AndroidGoogleApiEmulator6.0ChromeDriver-384x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/android_googleapi_emulator/firstButtonElement-AndroidGoogleApiEmulator6.0ChromeDriver-384x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/android_googleapi_emulator/firstButtonElement-AndroidGoogleApiEmulator6.0NativeWebScreenshot-384x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/android_googleapi_emulator/firstButtonElement-AndroidGoogleApiEmulator6.0NativeWebScreenshot-384x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/android_googleapi_emulator/fullPage-AndroidGoogleApiEmulator6.0ChromeDriver-384x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/android_googleapi_emulator/fullPage-AndroidGoogleApiEmulator6.0ChromeDriver-384x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/android_googleapi_emulator/fullPage-AndroidGoogleApiEmulator6.0NativeWebScreenshot-384x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/android_googleapi_emulator/fullPage-AndroidGoogleApiEmulator6.0NativeWebScreenshot-384x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_chrome/examplePage-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_chrome/examplePage-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_chrome/examplePageFail-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_chrome/examplePageFail-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_chrome/firstButtonElement-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_chrome/firstButtonElement-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_chrome/fullPage-chrome-latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_chrome/fullPage-chrome-latest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_firefox/examplePage-firefox_latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_firefox/examplePage-firefox_latest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_firefox/firstButtonElement-firefox_latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_firefox/firstButtonElement-firefox_latest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_firefox/fullPage-firefox_latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_firefox/fullPage-firefox_latest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_internet_explorer/examplePage-IE11-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_internet_explorer/examplePage-IE11-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_internet_explorer/firstButtonElement-IE11-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_internet_explorer/firstButtonElement-IE11-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_internet_explorer/fullPage-IE11-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_internet_explorer/fullPage-IE11-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_microsoftedge/examplePage-Microsoft_Edge_latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_microsoftedge/examplePage-Microsoft_Edge_latest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_microsoftedge/examplePage-Microsoft_Edge_latest-1366x769.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_microsoftedge/examplePage-Microsoft_Edge_latest-1366x769.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_microsoftedge/firstButtonElement-Microsoft_Edge_latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_microsoftedge/firstButtonElement-Microsoft_Edge_latest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_microsoftedge/firstButtonElement-Microsoft_Edge_latest-1366x769.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_microsoftedge/firstButtonElement-Microsoft_Edge_latest-1366x769.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_microsoftedge/fullPage-Microsoft_Edge_latest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_microsoftedge/fullPage-Microsoft_Edge_latest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_microsoftedge/fullPage-Microsoft_Edge_latest-1366x769.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_microsoftedge/fullPage-Microsoft_Edge_latest-1366x769.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_safari/examplePage-MojaveSafariLatest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_safari/examplePage-MojaveSafariLatest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_safari/examplePage-SierraSafari11-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_safari/examplePage-SierraSafari11-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_safari/firstButtonElement-MojaveSafariLatest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_safari/firstButtonElement-MojaveSafariLatest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_safari/firstButtonElement-SierraSafari11-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_safari/firstButtonElement-SierraSafari11-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_safari/fullPage-MojaveSafariLatest-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_safari/fullPage-MojaveSafariLatest-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/desktop_safari/fullPage-SierraSafari11-1366x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/desktop_safari/fullPage-SierraSafari11-1366x768.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_c_googleapi_emulator/examplePage-GooglePixelCTablet7.1ChromeDriver-900x1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_c_googleapi_emulator/examplePage-GooglePixelCTablet7.1ChromeDriver-900x1280.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_c_googleapi_emulator/firstButtonElement-GooglePixelCTablet7.1ChromeDriver-900x1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_c_googleapi_emulator/firstButtonElement-GooglePixelCTablet7.1ChromeDriver-900x1280.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_c_googleapi_emulator/fullPage-GooglePixelCTablet7.1ChromeDriver-900x1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_c_googleapi_emulator/fullPage-GooglePixelCTablet7.1ChromeDriver-900x1280.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/examplePage-GooglePixelGoogleAPIEmulator7.1ChromeDriver-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/examplePage-GooglePixelGoogleAPIEmulator7.1ChromeDriver-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/examplePage-GooglePixelGoogleAPIEmulator7.1NativeWebScreenshot-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/examplePage-GooglePixelGoogleAPIEmulator7.1NativeWebScreenshot-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/examplePage-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/examplePage-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/examplePage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/examplePage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/firstButtonElement-GooglePixelGoogleAPIEmulator7.1ChromeDriver-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/firstButtonElement-GooglePixelGoogleAPIEmulator7.1ChromeDriver-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/firstButtonElement-GooglePixelGoogleAPIEmulator7.1NativeWebScreenshot-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/firstButtonElement-GooglePixelGoogleAPIEmulator7.1NativeWebScreenshot-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/firstButtonElement-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/firstButtonElement-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/firstButtonElement-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/firstButtonElement-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/fullPage-GooglePixelGoogleAPIEmulator7.1ChromeDriver-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/fullPage-GooglePixelGoogleAPIEmulator7.1ChromeDriver-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/fullPage-GooglePixelGoogleAPIEmulator7.1NativeWebScreenshot-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/fullPage-GooglePixelGoogleAPIEmulator7.1NativeWebScreenshot-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/fullPage-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/fullPage-GooglePixelGoogleAPIEmulator8.1ChromeDriver-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/google_pixel_googleapi_emulator/fullPage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/google_pixel_googleapi_emulator/fullPage-GooglePixelGoogleAPIEmulator8.1NativeWebScreenshot-360x640.png -------------------------------------------------------------------------------- /test/images/saucelabs/ipad_air_simulator/examplePage-iPadAirSimulator-768x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/ipad_air_simulator/examplePage-iPadAirSimulator-768x1024.png -------------------------------------------------------------------------------- /test/images/saucelabs/ipad_air_simulator/firstButtonElement-iPadAirSimulator-768x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/ipad_air_simulator/firstButtonElement-iPadAirSimulator-768x1024.png -------------------------------------------------------------------------------- /test/images/saucelabs/ipad_air_simulator/fullPage-iPadAirSimulator-768x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/ipad_air_simulator/fullPage-iPadAirSimulator-768x1024.png -------------------------------------------------------------------------------- /test/images/saucelabs/ipad_pro_(12.9_inch)_(2nd_generation)_simulator/examplePage-iPadPro12.9.2nd-1024x1366.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/ipad_pro_(12.9_inch)_(2nd_generation)_simulator/examplePage-iPadPro12.9.2nd-1024x1366.png -------------------------------------------------------------------------------- /test/images/saucelabs/ipad_pro_(12.9_inch)_(2nd_generation)_simulator/firstButtonElement-iPadPro12.9.2nd-1024x1366.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/ipad_pro_(12.9_inch)_(2nd_generation)_simulator/firstButtonElement-iPadPro12.9.2nd-1024x1366.png -------------------------------------------------------------------------------- /test/images/saucelabs/ipad_pro_(12.9_inch)_(2nd_generation)_simulator/fullPage-iPadPro12.9.2nd-1024x1366.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/ipad_pro_(12.9_inch)_(2nd_generation)_simulator/fullPage-iPadPro12.9.2nd-1024x1366.png -------------------------------------------------------------------------------- /test/images/saucelabs/iphone_11_simulator/examplePage-iPhone11Simulator-414x896.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/iphone_11_simulator/examplePage-iPhone11Simulator-414x896.png -------------------------------------------------------------------------------- /test/images/saucelabs/iphone_11_simulator/firstButtonElement-iPhone11Simulator-414x896.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/iphone_11_simulator/firstButtonElement-iPhone11Simulator-414x896.png -------------------------------------------------------------------------------- /test/images/saucelabs/iphone_11_simulator/fullPage-iPhone11Simulator-414x896.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/iphone_11_simulator/fullPage-iPhone11Simulator-414x896.png -------------------------------------------------------------------------------- /test/images/saucelabs/iphone_8_simulator/examplePage-iPhone8Simulator-375x667.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/iphone_8_simulator/examplePage-iPhone8Simulator-375x667.png -------------------------------------------------------------------------------- /test/images/saucelabs/iphone_8_simulator/firstButtonElement-iPhone8Simulator-375x667.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/iphone_8_simulator/firstButtonElement-iPhone8Simulator-375x667.png -------------------------------------------------------------------------------- /test/images/saucelabs/iphone_8_simulator/fullPage-iPhone8Simulator-375x667.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/iphone_8_simulator/fullPage-iPhone8Simulator-375x667.png -------------------------------------------------------------------------------- /test/images/saucelabs/iphone_x_simulator/examplePage-iPhoneXSimulator-375x812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/iphone_x_simulator/examplePage-iPhoneXSimulator-375x812.png -------------------------------------------------------------------------------- /test/images/saucelabs/iphone_x_simulator/firstButtonElement-iPhoneXSimulator-375x812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/iphone_x_simulator/firstButtonElement-iPhoneXSimulator-375x812.png -------------------------------------------------------------------------------- /test/images/saucelabs/iphone_x_simulator/fullPage-iPhoneXSimulator-375x812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/iphone_x_simulator/fullPage-iPhoneXSimulator-375x812.png -------------------------------------------------------------------------------- /test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/examplePage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0ChromeDriver-360x740.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/examplePage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0ChromeDriver-360x740.png -------------------------------------------------------------------------------- /test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/examplePage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0NativeWebScreenshot-360x740.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/examplePage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0NativeWebScreenshot-360x740.png -------------------------------------------------------------------------------- /test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/firstButtonElement-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0ChromeDriver-360x740.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/firstButtonElement-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0ChromeDriver-360x740.png -------------------------------------------------------------------------------- /test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/firstButtonElement-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0NativeWebScreenshot-360x740.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/firstButtonElement-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0NativeWebScreenshot-360x740.png -------------------------------------------------------------------------------- /test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/fullPage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0ChromeDriver-360x740.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/fullPage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0ChromeDriver-360x740.png -------------------------------------------------------------------------------- /test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/fullPage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0NativeWebScreenshot-360x740.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/images/saucelabs/samsung_galaxy_s9_wqhd_googleapi_emulator/fullPage-EmulatorSamsungGalaxyS9WQHDGoogleAPI9.0NativeWebScreenshot-360x740.png -------------------------------------------------------------------------------- /test/init.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/init.spec.ts -------------------------------------------------------------------------------- /test/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/test/main.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wswebcreation/protractor-image-comparison/HEAD/yarn.lock --------------------------------------------------------------------------------