Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • About Us
  • Toggle search form

Category: Uncategorized

Taking Screenshot Using TakesScreenshot Interface In Selenium

Hello Folks, In this post we will learn how to take screenshots in Selenium webdriver using selenium provide interface TakesScreenshot . Why we need to take screenshot? When we perform manual testing , for each step or important steps, we take screenshot and attach in test result report. Screenshots are proof of test case status. It gives…

Read More “Taking Screenshot Using TakesScreenshot Interface In Selenium” »

Uncategorized

webdriver quiz

Skip to content As a part of a Series of posts on Learn Selenium With Quiz, This set contains questions from implicit wait concepts… As a part of a Series of posts on Learn Selenium With Quiz, This set contains very basic questions which…

Uncategorized

How To Load URL In Selenium WebDriver – get() & navigate()

Launching a web browser and loading a URL in opened browser are basic steps to get started with Selenium WebDriver. We have already learnt to launch different browsers using Selenium WebDriver. In this post, we will see how can we load a URL in browser. In this post we will learn below topics: Loading a…

Read More “How To Load URL In Selenium WebDriver – get() & navigate()” »

Uncategorized

Test Scenarios Vs. Test Cases in Software Testing

Hello Folks, In this post, we will learn in details about Test Scenarios and Test Coverage with proper examples. Test scenarios Test scenario is a moderate level of breakup of a business requirement in form of possible use cases to ensure more test coverage, to identify criticality of sub requirements which helps in finding critical…

Read More “Test Scenarios Vs. Test Cases in Software Testing” »

Uncategorized

tests in postman

Skip to content Debugging and logging are very important when you are trying to develop/test something. During development or Testing of any software… If you think Postman is only for static or manual testing, you are not correct. We can do automation testing…

Uncategorized

Replace Value in JSON Using JsonPath in Java | Jayway JsonPath | Rest Assured |

#api #apitesting #java #json #jsonpath #jsonpayload An API needs to be tested for a different set of payloads or scenarios. Most of the time, we manipulate the basic JSON payload to use for different scenarios. For example – Suppose we have an API to create an airline with the below payload – { “id”: 12,…

Read More “Replace Value in JSON Using JsonPath in Java | Jayway JsonPath | Rest Assured |” »

Uncategorized

REST Assured Tutorial 55 – JSON Schema Validation in Rest Assured

As a part of End to End REST Assured Tutorial, in this post, we will learn about JSON Schema validation in Rest Assured. In most of the tutorials, JSON schema validation in Rest Assured is shown for JSON response only or professionals understand that JSON schema validation can be done only for a JSON response. That is…

Read More “REST Assured Tutorial 55 – JSON Schema Validation in Rest Assured” »

Uncategorized

dataprovider

Skip to content In last post, we have learnt how can we make parameterized DataProvider method in TestNG to provide test data to… “DataProvider” is an important feature provided by TestNG to provide required test data to test methods to run on. We…

Uncategorized

getOrDefault() – A Method Of Map Interface In Java

Let’s start with a simple Java program and understand:- package Concepts; import java.util.HashMap; import java.util.Map; public class GetOrDefaultMethodExample { public static void main(String[] args) { Map dataMap = new HashMap(); dataMap.put(101,”Amod”); dataMap.put(102,”Swati”); dataMap.put(103,”Aaditya”); dataMap.put(104,”Animesh”); System.out.println(dataMap.get(101)); System.out.println(dataMap.get(102)); System.out.println(dataMap.get(103)); System.out.println(dataMap.get(104)); // Non-existing key in dataMap System.out.println(dataMap.get(105)); } } Amod Swati Aaditya Animesh null I have created a…

Read More “getOrDefault() – A Method Of Map Interface In Java” »

Uncategorized

Postman Tutorial Part 16 – Introduction To Collections In Postman

Hello Folks, If you are a software developer or tester, you must be aware of different test suites. E,g, Smoke, Sanity , Regression etc. A test suite is a group of multiple tests based on some factors. Factors might be based on functionality, priority etc. The similar concept is in Postman which is called as…

Read More “Postman Tutorial Part 16 – Introduction To Collections In Postman” »

Uncategorized

Posts pagination

Previous 1 … 12 13 14 … 155 Next

Copyright © 2026 Make Selenium Easy.

Powered by PressBook Masonry Dark