Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • Toggle search form

Month: March 2025

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

Get Started With Non-Maven Selenium Project – Java – Eclipse

A beginner should always start from scratch to build concepts block by block instead of jumping to advanced blocks. Keeping that in mind, I will share details on a get started non-maven Selenium Java project from scratch in Eclipse IDE. You can clone from my GIT repo as well. Must download and install Eclipse IDE…

Read More “Get Started With Non-Maven Selenium Project – Java – Eclipse” »

Uncategorized

Using Explicit Wait As WebDriverWait in Selenium WebDriver

Using Thread.sleep() in Selenium WebDriver Using Implicit Wait in Selenium WebDriver Let’s continue exploring Explicit wait in Selenium WebDriver now. As of now we know two wait mechanisms which we can use in Selenium WebDriver. Sleep just makes current thread idle for specified time and implicit wait just works for location web elements. But are…

Read More “Using Explicit Wait As WebDriverWait in Selenium WebDriver” »

Uncategorized

ransom notes

Skip to content Problem Statement https://leetcode.com/problems/ransom-note/ Given an arbitrary ransom note string and another string containing letters from all the magazines, write a…

Uncategorized

protractor

Hello Folks, In last post we have seen how can we install NodeJS package locally and globally. In this post… Hello Folks, In last post, we have already seen Installation of NPM in last post. In this post we will… Hello Folks, In last post, we have seen about Introduction & Installation of NodeJS. In…

Read More “protractor” »

Uncategorized

Launch of Edge and Internet Explorer browser in Selenium 3

Hello Folks, We have seen: How to launch Firefox browser. How to launch chrome browser. In this post we will learn: How to launch Edge browser(Windows 10 onward) How to launch Internet Explorer browser What is Edge browser: Microsoft Edge is a web browser developed by Microsoft and included in Windows 10, Windows 10 Mobile…

Read More “Launch of Edge and Internet Explorer browser in Selenium 3” »

Uncategorized

Usage of Java Stream API in Selenium – Retrieving Text From a List Of WebElements

Stream API is the major feature introduced in Java 8. As an automation tester, if you think you don’t have to learn about it, you may be wrong. Yes you don’t need to know everything but little basic knowledge of Stream API will help you to reduce lines of code in Selenium script. I am…

Read More “Usage of Java Stream API in Selenium – Retrieving Text From a List Of WebElements” »

Uncategorized

Why WebDriver Is An Interface not a class or an abstract class?

“Why WebDriver is an interface not a class or an abstract class?” This is a frequently asked interview question as well as an important concept of Selenium WebDriver. Anyway the answer of this question depends on how much you understand Interface and Abstract class concepts in Java and how and when to use. There are…

Read More “Why WebDriver Is An Interface not a class or an abstract class?” »

Uncategorized

Posts pagination

Previous 1 … 9 10 11 … 24 Next

Copyright © 2026 Make Selenium Easy.

Powered by PressBook Masonry Dark