QA Automation Labs

Author: admin

image-14

How to test multiple domains or origins with Cypress

Problem Statement Before cypress version 9.6.0 if you want to run test cases in two domains under the same test case it gives us a cross-origin error After Version 9.6.0 this problem was solved, Now we can easily execute our test cases across multi-domain…

Read More
image-768x335

Cypress Dashboard Configuration and Execute the Test cases

What is Cypress Dashboard? Cypress Dashboard is a web-based component that provides various features related to projects and test runs in Cypress. Cypress Dashboard increases test velocity while giving total visibility into tests running in your CI pipeline. Additionally, it provides the visual representation of…

Read More
image-10-1024x390

How to integrate Cypress with Database in Azure Pipeline for Test cases Execution

How to Integrate Cypress with Database in Azure Pipeline for Test cases Execution Blog cover about integrating Cypress with Database in Azure Cloud for Test cases Execution. Cypress connects to the azure database Pre-request Create SQL Database in Azure Cloud Step…

Read More
1_0rzZ4MVAiEvU_pUyOw45rw

How to Integrate Allure report with Cypress?

Why is Allure Reporting to Cypress? Cypress Installation Step to Install cypress Allure Installation Enter the below commands in your command line to install allure using yarn: yarn add -D@shelex/cypress-allure-plugin Or using npm: npm i -D @shelex/cypress-allure-plugin npm install — save-dev mocha-allure-reporter allure-commandline Allure…

Read More
1_kMpTHUjbzDUKQeRptP1fUQ

Page Object Model with Playwright and JAVA

What is Page Object Model (POM)? Page Object Model is a design pattern commonly used in test automation that creates an object repository for web UI elements. It helps us to reduce code duplication and improves test maintenance. We can break…

Read More
1_ME8Vo7eja0XHjn7ANz7niQ

How to Setup and run Cypress Test cases In Azure DevOps Pipeline

Blog cover about front-end testing with Cypress and its integration with Azure DevOps and GitHub. Pre-request Azure DevOps Pipeline Azure Pipelines automatically builds and tests code projects to make them available to others. It works with just about any language or…

Read More
image-20-768x394

Running End-to-End Cypress Test cases in a Google Cloud Pipeline

Cypress is an end-to-end testing framework that is used to test web applications. It is an open-source JavaScript-based framework that enables developers to write and run automated tests for their web applications in a simple and easy way. It allows developers to…

Read More