QA

Introduction to the Cypress Project Structure

Reading Time: 4 minutes Hi Folks,In this blog, we talk about the Cypress Project structure that is fundamentally and architecturally different from other test automation frameworks.We use this folder to store data objects or external pieces of static data that we use throughout the tests Cypress Folder Structure Let’s understand the folder structure in cypress project, it defines entire architecture and the workflow of whole system If we know Continue Reading

Basic Introduction to the Testcontainers

Reading Time: 3 minutes Hello everyone! In this blog, we will start with the Basic Introduction of Testcontainers and how Testcontainers help in Integration testing along with its benefits and drawbacks also. What is Testcontainers? As per the official documentation, “Testcontainers is a Java library that supports JUnit tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container.” Continue Reading

background

Introduction To The Rest Assured

Reading Time: 3 minutes Hi Folks, In Today Blog We will take a look into Introduction To Rest Assured so without any delay, Let’s Start What is Rest Assured REST stands for REpresentational State Transfer It is a java library used for testing and validating the Restful Web Services It supports Behavior-Driven Development(BDD) syntax like Given, When, and Then notations It helps us to integrate with testing frameworks like Continue Reading

Page Loading Strategy in the Selenium Webdriver

Reading Time: 2 minutes Hello everyone, in this blog we are going to see what is page loading strategy in selenium web driver. What is Page Loading Strategy in Selenium? This page loading strategy will come into the picture whenever you are launching your browser using the get() method or navigate.to() method. By default, Selenium WebDriver follows the standard page load strategy when it loads any page which means Continue Reading

What’s new in JMeter 5.5?

Reading Time: 3 minutes Hi Folks, In this blog post, we are going to see what’s new in JMeter 5.5, Apache community has released 5.5 with a couple of new features, several improvements, and fixes. What’s new in JMeter 5.5? A brand-new thread group, Open Model Thread Group JMeter now supports Java 17 Log4j 2.17.2 is now available in JMeter JMeter 5.5 is the ability to replace the Oro-based Continue Reading

background

Different types of Performance testing in k6 | Tech

Reading Time: 4 minutes Hi Readers, In this blog, I will explore how it is possible to run many types of testing in k6. Each type of testing has a different purpose. K6 Basically, It is a free and open-source load testing tool for testing the performance of APIs. K6 has a goal-oriented testing mode, and users can define goals using Thresholds when building their tests.  Different Types of Testing There are many Continue Reading

Cloud testing in k6 | Tech

Reading Time: 3 minutes Hi Readers, In this blog, I will explore how to run a test script in the K6 cloud to visualise and analyse the results on the web app in real-time. K6 Basically, It is a free and open-source load testing tool for testing the performance of APIs. K6 has a goal-oriented testing mode, and users can define goals using Thresholds when building their tests.  K6 cloud tests from the Continue Reading

silver and black laptop computer

When and how to start automation testing?

Reading Time: 3 minutes Today in this new era, customers demand superlative products. Hence to accomplish this continuous development, DevOps and continuous testing came into the picture. Organizations are moving to automation testing to accomplish their goal of efficiency. To achieve the best result with automation testing, one must follow the complete cycle of automation testing. Let’s check how to start automation testing When to think of automation testing? Continue Reading

What is the Internet of thing testing?

Reading Time: 3 minutes Hello folks, in this blog we will check What is IoT and What is the Internet of thing testing? Nowadays IoT is a trending word and we all come across this word often. The full form of IoT is the “Internet of Thing”. We are encountering numerous IoT applications these days. The concern every time raises What is the Internet of thing testing? IoT devices Continue Reading

How to do XHR testing with Cypress?

Reading Time: 3 minutes Let’s understand what is XHR? According to Wikipedia, XMLHttpRequest is an API in the form of an object whose methods transfer data between a web browser and a web server. The object is provided by the browser’s JavaScript environment. This is used with protocols other than HTTP. Also, data can be in the form of XML, JSON, HTML, or plain text. Can we achieve XHR Continue Reading

What is Appium?

Reading Time: 2 minutes Hello folks, Let’s dig into What is Appium? The definition says it is a cross-platform, open-source tool. The main purpose was to test an application on multiple devices. Hence, the best part is that we can automate native, web, and hybrid mobile applications. Therefore, it supports Android, iOS, and Windows desktop platforms. Features Firstly, it allows testing of all three mobile applications, namely: native, hybrid, Continue Reading

How to do database integration with Cypress?

Reading Time: 2 minutes Cypress is one of those popular tools which has established its place very quickly and is very popular for Web integration and End to End UI test automation. Cypress can do database integration. It needs a javascript framework like jasmine or mocha. These are one of the famous assertion libraries in JavaScript. Cypress recommends using mocha. In this blog, we will see how to do database integration using Cypress. Continue Reading

How to write Cypress test from Test runner?

Reading Time: 3 minutes Cypress is one of those popular tools which has established its place very quickly and is very popular for Web integration and End to End UI test automation. It needs a javascript framework like jasmine or mocha. These are one of the famous assertion libraries in JavaScript. Cypress recommends using mocha. Whenever we are downloading cypress, it automatically bundles mocha. Let’s see How to write the Cypress test from Continue Reading