Home » Automation Testing
How to delete previous downloaded files in Cypress

To delete previous downloaded files in Cypress, you can use the fs (file system) module to delete the files before each test run. First, you will need to install the fs module by running the following command in…
Read More »What is QAOps? Process to implement QAOps

According to traditional, waterfall-style methodologies, where testing is often done at the end of the development process what leads to significant bottlenecks that can drip down the project quality and then release. That’s precisely where QAOps comes into…
Read More »The Future of Software Testing !

Software testing is an important part of the software development process, as it helps ensure that software is of high quality and meets the needs of its users. In the future, we can expect to see a number…
Read More »Appium Mobile Automation setup (Android)

1. Download Java and set Java_Home in environmental variables 2. Download Android STUDIO from this link: https://developer.android.com/studio#downloads .exe file comes with 2 files as SDK and STUDIO 3. Check Android installation path in Machine: Go to C\Users\ System…
Read More »Unit Test: What is, Advantages & How works?

What is Unit Testing? UNIT TESTING is a type of software testing where individual units or components of a software are tested. The purpose is to validate that each unit of the software code performs as expected. Unit Testing…
Read More »Generate Cypress MochAwesome Reporter

Cypress compatibility: node >= 14Cypress >= 6.7.0 Setup: or config file (cypress.json by default) or command line import ‘cypress-mochawesome-reporter/register’; module.exports = (on, config) => { require(‘cypress-mochawesome-reporter/plugin’)(on); }; 5. Run test cases or project: npx cypress run –browser chrome…
Read More »Differences between Selenium 3 Vs. Selenium 4

In this article, I will compare the architecture for Selenium 3 vs Selenium 4, then highlight a few Selenium 4 advantages. I will also discuss the new features in Selenium 4 that have been applied to Selenium IDE, Selenium…
Read More »Cypress Studio and it’s usage?
Problem Statement We don’t have any way in cypress where we can create test cases without writing any code and it was a bit tough to understand the various actions /commands in cypress, especially for new users. Solution Cypress.io…
Read More »