test automation

How to Handle Alerts and pop-ups in Selenium 4

Reading Time: 3 minutes In this blog, we will go through the javascript Alert and pop-up boxes in selenium. in this blog, we will see how we can handle javascript alerts and JS confirmation boxes, and JS prompt boxes. What is alerts and pop-up in Selenium? Let’s take an example if we go to “https://the-internet.herokuapp.com”. this is a demo website and here we have some examples of javascript alerts. Continue Reading

How to Perform DataDriven Testing In Cucumber?

Reading Time: 4 minutes Hello People, As we know Most commercial automated software tools on the market support some sort of Data-Driven Testing. It allows us to automatically run a test case multiple times with different input and validation values. As Cucumber is more an automated testing framework than a ready-to-use tool. It takes extra effort to support data-driven testing to automate tests. The good part is that the Cucumber inherently supports Data Driven Testing using Scenario Outline. Continue Reading

How to Handle Browser Windows and Cookies In Selenium 4?

Reading Time: 3 minutes Hello People, this article explains How to Handle and resize browser windows and cookies using the Selenium Webdriver. Resizing the browser window and handling cookies is important as it makes testing much easier. We can resize the browser window in Selenium Webdriver which actually helps in searching for the elements easier. In addition to this, this article also explains how to handle cookies like creating, Continue Reading

Concluding deal with coding company

How to handle Dynamic JSON Payload in RestAssured

Reading Time: 3 minutes Hello Readers! As popularly considered, an API (Application Program Interface) is an engine of the software application. It is crucial to test the APIs as these are expected to work fine and without any deviations. In this blog, we will have an insight into RestAssured and how we can handle dynamic JSON payload with it. What is RestAssured? RestAssured is a testing tool that enables 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

Let’s know about Checks and Thresholds in k6

Reading Time: 2 minutes In this blog we will know about the check function and thresholds that is commonly used in k6 load testing. What is check function in k6? A check is a test condition that can give a truthy or falsy result. The sets parameter contains one or more checks, and the check() function will return false if any of them fail. Let say we are writing a load test script where you Continue Reading

A quick overview of Gatling & basic Gatling Script

Reading Time: 4 minutes Hello Readers,In this blog, we will get a quick overview about what is gatling & how to write gatling script. Gatling is one of the performance testing tools that we can use in the load generation if development is focus on http support . Gatling is an open-source load and performance-testing framework based on Scala, Akka and Netty. Create first gatling project We can create Continue Reading

Quality assurance Ops- Is it software industry’s future?

Reading Time: 3 minutes Quality has become a concern when it comes to software development. Quality assurance Ops- integrates the QA processes, automation, and QA Reporting dashboard with the Software Development Lifecycle (SDLC) process. Hence it means giving importance to the testing team in the SDLC process. Thus here in this blog, we will get to know the answer for Quality assurance Ops- Is it the software industry’s future. Continue Reading

How to heal the locators with Self Healing Mechanism in Katalon Studio

Reading Time: 4 minutes Hi Folks! While performing automated testing, there are many instances when an automation engineer encounters NoElementFoundException. This generally means that your script is unable to find the specified locators. This can be due to many of the reasons, either it is broken locator, race condition, wrong locator strategy etc. The question that arises now is how can we avoid such errors in our automation scripts. Continue Reading

Karate DSL and Concourse – How to integrate?

Reading Time: 3 minutes Hi folks, In this short blog, we will see how to integrate Karate DSL having API tests with the concourse. Since CI/CD is a major thing in the software industry now, we need to have our tests integrated with the CI/CD pipeline that we are using in our respective projects. This blog is all about integrating Karate with Concourse CI. So, let’s begin. Setting up Continue Reading

JBehave – How to get started?

Reading Time: 4 minutes Hi folks, In this blog, we will explore yet another powerful BDD framework, JBehave. We will try to figure out the why’s and how’s of jBehave and later on will try some hands-on with selenium by integrating this framework with it. So, let’s get going. What is jBehave? As mentioned in the official documentation, JBehave is a framework for Behaviour-Driven-Development (BDD). BDD is an evolution of Continue Reading

Data Driven Testing in JMeter

Reading Time: 5 minutes Hi folks, Initially, In this blog we will go through the data driven testing concept, then we will briefly see the step by step process of implementing the JMeter test script using data from external sources. Data driven testing? Data-driven testing is one of the most important mechanisms to determine the stability of the application.  Mostly, when an application is tested by a tester manually Continue Reading

Automate Test with TestNG

Reading Time: 3 minutes In the previous tutorial we learn about What is Test Next Generation (TestNG) framework, Now it’s time for some hands-on experience of writing our first TestNG Test case. How to Create TestNG Class in Eclipse Follow below steps to create TestNG Class. Step 1: Navigate to src from the project folder and right-click the same. You will see TestNG as an option in the drop-down towards Continue Reading