Author: codenbox

Test plan Template

No Picture

Project Info: Project Info Product Owner QA Prime Release Peer Review and Sign-Offs Peer Reviewer Name Role Date Sign-Off QA Team Lead Sign-Off Product Owner Sign-Off QA Peer Sign-Off Developer Sign-Off Developer Sign-Off Project Overview Refer to release…

Read More »

Key Types of Testing

No Picture

High level definition of the various types of testing that will be executed by QA depending on project needs or requirements Functional Testing – to verify that a software application performs and functions correctly according to design specifications.Β  Include…

Read More »

Defect Severity Definitions

No Picture

To define the various defect priority/severity options in Jira Critical Major loss of system function or defect results in testing coming to a halt and no acceptable work around exists This is a show stopper/blocker defect and the…

Read More »

Defect Reporting Template

No Picture

The template below must be used for all QA bug reports in order to capture all of the required information for resolution and to avoid delays with investigations. Issue Description <Summary of what the issue is> Steps To…

Read More »

Defect Management

No Picture
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 »

How to integrate Cucumber-BDD framework in Cypress??

Install the plugin by running: npm install –save-dev cypress-cucumber-preprocessor Cypress Configuration Add it to your plugins: Go to & update at  cypress/plugins/index.js const cucumber = require(‘cypress-cucumber-preprocessor’).default module.exports = (on, config) => { on(‘file:preprocessor’, cucumber()) } Add support for…

Read More »

How to work with Dynamic Element in Cypress?

Some web-elements are dynamically generated as a result of a previous action. For example, selecting a check-box in a web-form might populate the UI with another panel or field. Often these elements similarly have a dynamically generated Class…

Read More »

QA best Practices in Agile world!

We all know Testing is vital for quality assurance, and best practices in software testing can yield high-end software at the end. Here are some best practices for software QA in the Agile world: Once requirements have been…

Read More »