Visual Testing Cypress does not check on CSS changes on elements, instead, I used Visual Testing Tool to achieve this. I integrated Percy Visual Testing in the Cypress automation as follows: Firstly, I created a Jira ticket for visual testing. Then I pulled the develop , our main branch from GitHub using Visual Studio Code IDE, and created a new local git branch, this would ensure I have the latest merged code to begin the test. I run the npm command - npm install --save-dev @percy/cypress To install Percy. Then imported - import '@percy/cypress'; in support/commands.js which will give us access to the Percy snapshot command- cy.percySnapshot(). Also, percy expects a PERCY_TOKEN to be set, this value can be found on the Percy project in the BrowserStack dashboard. Set PERCY_TOKEN=<PERCY_TOKEN VALUE> I logged into the Browserstack online dashboard and created a project then copied the PERCY_TOKEN value provided. Using the following command, I i...