Author: codenbox

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 »

Software testing QA process

Testing QA PROCESS

Software testing is an important process that helps ensure the quality and reliability of software applications. Quality assurance (QA) refers to the overall process of verifying that a product meets certain standards and requirements. The QA process for…

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 »

Test Estimation techniques: Every QA should know

Test Estimation is a management activity which approximates how long a Task would take to complete. Estimating effort for the test is one of the major and important tasks in Test Management. What can be estimated? Basically, everything that can be quantified, like money,…

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?

No Picture

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 »

Rest API Response Codes

Here are some sample Response Codes which we will normally see while performing REST API testing through any REST API client. #1) 100 SeriesThese are temporary informational Responses 100 -Continue 101 -Switching Protocols 102 -Processing #2) 200 SeriesThe…

Read More »