fintech-automation-test
Version:
Autonomous Test Automation
10 lines (8 loc) • 378 B
JavaScript
Feature('To test screen comparison with resemble Js Example test');
Scenario('Compare Fint Home Page @visual-test', async ({ I }) => {
I.amOnPage('https://www.fintinc.com/');
I.amOnPage('https://www.fintinc.com/contact');
I.resizeWindow(1362, 605);
I.saveScreenshot('FintHome.png');
I.seeVisualDiff('FintHome.png', { tolerance: 2, prepareBaseImage: false });
});