Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • About Us
  • Toggle search form

Author: admin

Using getText() method in Selenium WebDriver

Interface WebElement contains a method “getText()” whose return type is a String. If you refer official document of Selenium then you can find a clear crystal sentence stating what this method does :- Get the visible (i.e. not hidden by CSS) innerText of this element, including sub-elements. I did not understand the terms such as…

Read More “Using getText() method in Selenium WebDriver” »

Uncategorized

Are Your Selenium Scripts Ready For Parallel Execution?

If I ask you how can you run your Selenium scripts in parallel (Assuming you are using Selenium – Java with TestNG) , probably you will answer just add a “parallel” attribute with a desired value (methods, classes, tests or instances) and set a thread count in TestNG XML and you are all set to…

Read More “Are Your Selenium Scripts Ready For Parallel Execution?” »

Uncategorized

Postman Tutorial Part 14 – Create, Manage and Use Global Variable In Postman

Hello folks, We have already seen creating, managing and using environment variables in Postman. We can select only single environment at a time in Postman and can use variables of that selected environment. We may have some variables which are common to each environment. It is not good practice to keep a separate copy of…

Read More “Postman Tutorial Part 14 – Create, Manage and Use Global Variable In Postman” »

Uncategorized

How To Iterate Map In Java?

There are multiple ways to iterate over a Map In Java which we will learn with examples in this post. The Map interface has a method called entrySet() which returns a collection view of the map as Map.Entry. Entry is an inner interface of the Map interface. Set> entries = mapData.entrySet(); for (Map.Entry keyValue: entries)…

Read More “How To Iterate Map In Java?” »

Uncategorized

Git Tutorial 32 – How To Restore Deleted And Committed But Not Pushed File Without GIT Reset?

As a part of GIT Tutorials End To End, we will learn about retrieving a deleted and committed file in Git without using GIT reset command. I will expect that you are aware of the basic concepts and commands of GIT. But if you are a beginner in GIT then I strongly recommend you to refer GIT…

Read More “Git Tutorial 32 – How To Restore Deleted And Committed But Not Pushed File Without GIT Reset?” »

Uncategorized

TestNG Tutorials 30: Groups Attribute at Class Level In TestNG

Hello Folks, In previous post, we learnt about basics of group concepts in TestNG and how to use with @Test annotated methods. Before continuing this post, I will advise you to go through this post first: @Test annotation at class level in TestNG Suppose if you need to write multiple @Test annotated methods in a class,…

Read More “TestNG Tutorials 30: Groups Attribute at Class Level In TestNG” »

Uncategorized

TestNG Tutorials 42: Parameters In TestNG or Parameterization of Methods in a TestNG Class

Hello Folks, Arguments or Parameters help us to achieve reusability of codes and cleanliness of codes. We can do overloading of methods using different number, types and order of parameters to serve differently for different set of values. TestNG also allows you to parameterized your tests. We will see how can we achieve parameterisation of methods…

Read More “TestNG Tutorials 42: Parameters In TestNG or Parameterization of Methods in a TestNG Class” »

Uncategorized

Handling Frames/IFrames In Selenium WebDriver : Part 3

Hello Folks, This will be last part of “Handling frames in selenium webdriver”. We know what is frame and how to handle it in selenium webdriver. But I have seen many queries where people is not able to find whether web element is in frame or not. We will see ways of finding if web…

Read More “Handling Frames/IFrames In Selenium WebDriver : Part 3” »

Uncategorized

Black Box Testing and White Box Testing : : Everything You Need To Know

Hello Folks, In this post, we will see below topics: What is White box testing? What is Black box testing? What are differences between White box and Black box testing? There are many testing techniques which are broadly categorised into two: Static Testing and Dynamic Testing. Dynamic testing is again subdivided into two major categories:…

Read More “Black Box Testing and White Box Testing : : Everything You Need To Know” »

Uncategorized

Importance of Using ThreadLocal Variables in Parallel Execution Of Automation Scripts

In previous post, we see some common mistakes which we do while running selenium automation scripts in parallel. As we know now that object variables are shared by threads created by same object, we need a way to keep object variables unique to each threads so that we don’t get any data inconsistency when reading…

Read More “Importance of Using ThreadLocal Variables in Parallel Execution Of Automation Scripts” »

Uncategorized

Posts pagination

Previous 1 … 31 32 33 … 155 Next

Copyright © 2026 Make Selenium Easy.

Powered by PressBook Masonry Dark