Home » Automation Testing

The Future of Software Testing !

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 »

What is Mobile Gestures

Mobile gestures are actions that can be performed on a touchscreen device, such as a smartphone or tablet, using one or more fingers. These gestures can be used to perform various tasks, such as scrolling, swiping, zooming, and…

Read More »

Appium Mobile Automation setup (Android)

Appium Setup

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?

Unit Test

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

MochAwesome Reporter

    Cypress compatibility: node >= 14Cypress >= 6.7.0 Setup: or or command line import ‘cypress-mochawesome-reporter/register’; const { defineConfig } = require(‘cypress’); module.exports = defineConfig({ reporter: ‘cypress-mochawesome-reporter’, reporterOptions: { charts: true, reportPageTitle: ‘custom-title’, embeddedScreenshots: true, inlineAssets: true, saveAllAttempts: false,…

Read More »

Differences between Selenium 3 Vs. Selenium 4

Se3 vs Se4

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 »

API interview questions

Read More »

Cypress commands: Cheat Sheet

Cypress automation can be simple if you know the most of it’s commands as 90% of your script can be done base on Cypress commands. Let’s have a quick look the most useful commands in Cypress: /// <reference…

Read More »

Multiple Cucumber HTML reporter in Cypress

It is very important to have a report on our test automation project. A good report allows us to evaluate the current status of the project and the overall quality of the product. Now a days Cypress allow…

Read More »