Manual Testing
Hello Folks, We testers are always confused with these two terms : Verification & Validation. I will try my best… Hello Folks, In this post, we will see below topics: What is White box testing? What is Black box testing?… Hello Folks, This is on-demand post. Many people asked me to provide guidelines to clear…
Baby Steps To Become Efficient Selenium-Java Automation Tester
Hello Folks, Many people approached me to write down my journey to become an Automation tester. So here it comes:- Be honest and ask yourself two questions given below:- Have you asked how much knowledge of programming language is needed to learn automation? If I refer any particular blog/channel/book, is that enough? If your answer…
Read More “Baby Steps To Become Efficient Selenium-Java Automation Tester” »
Features of Selenium 4.0.0 Release – Java Binding
An alpha version of Selenium is released as 4.0.0-alpha-1. As we were expecting a big changes in Selenium 4 it is not like that. An alpha release is a release when the feature which you are developing is incomplete or partially complete. So when you are trying below features, may or may not work properly….
Read More “Features of Selenium 4.0.0 Release – Java Binding” »
Part 1: Handling Drop-down Created Using SELECT Tag In Selenium
Hello Folks, In last post we have seen an important topic in Selenium Webdriver which was Handling Any Types Of Listbox/dropdown In Selenium Webdriver. Method discussed in this post will work for all types of drop-down created using any tags. Mostly drop-down are created using tag and Selenium provides a special way to handle such…
Read More “Part 1: Handling Drop-down Created Using SELECT Tag In Selenium” »
Why It Is Not Possible To Read Locators From External Sources In Page Factory Of Selenium WebDriver
Hello Folks, Many automation tester wants to read locators from external sources like database, properties file or excel sheets. Reading locators from external sources and using it in your program is very easy if we don’t use Page Factory. It becomes difficult because of @FindBy annotation. What is annotation in Java? Annotations in Java are…
Postman Tutorial Part 43 – Create Parameterized Request by Reading Data From JSON in Postman
As a part of End to End API Manual and Automation Testing using Postman Series , in this post, we will see how can we read data from an external JSON file in Postman. In previous post, we have learnt how to read data from a csv file in Postman. Many steps will be similar…
Using Implicit Wait in Selenium WebDriver
Agenda :- Introduction of implicit wait Working of implicit wait Disadvantages of implicit wait? Previously we have seen “Using Thread.sleep() in Selenium WebDriver” and learnt why we need wait mechanisms in Selenium WebDriver. We implemented waiting mechanism using sleep() method provided by Thread class which is provided by Java. Let’s see what waiting mechanisms are…
Git Tutorial 6 – Git Add – Add Changes From Working Directory To Staging Directory
As a part of GIT Tutorials End To End, we will learn about another frequently used and important git command “git add“ in this post. We have seen the usage of “git add” command in the previous post without understanding much about it. Let’s know more about this command in this post. Did you know that…
Read More “Git Tutorial 6 – Git Add – Add Changes From Working Directory To Staging Directory” »
Controlling Browser Driver Services In Selenium WebDriver
Hello Folks, Let’s learn something interesting in selenium webdriver. We know whenever we launch a browser, first browser serve is started which helps in communication between browser and selenium commands. The same process is repeated for every test if you launch and quit browser every time. Let’s understand above point with an example below: Run…
Read More “Controlling Browser Driver Services In Selenium WebDriver” »