Selenium Interview Question 3 – Difference Between get() and navigate() Methods of Selenium WebDriver

This is the mostly asked interview question and confusing too for Selenium testers. People generally differentiate get() and navigate() methods as below: get() method holds or waits till page is loaded while navigate() does not. Above statement is NOT CORRECT. Referring official document of Selenium is always good to learn valid points. It says get() … Continue reading Selenium Interview Question 3 – Difference Between get() and navigate() Methods of Selenium WebDriver

Postman Tutorial Part 9 – DIfference Between Put and Patch HTTP Methods

Hello Guys, Whether you are an API developer or tester, you must understand the difference between PUT and PATCH http methods. It is also a frequently asked interview question. Let's understand PUT and PATCH in details.  PUT:- An HTTP PUT method is used to primarily update the resource information but  it also can be used … Continue reading Postman Tutorial Part 9 – DIfference Between Put and Patch HTTP Methods

Selenium Interview Question 2 – Can Selenium Be Used For API Automation?

Selenium official website introduce Selenium as "Selenium automates browsers. ". A browser is an interface or abstraction between "How it looks?" (Front end of an application) and "How something is actually performed?" (Middleware and backend of an application). Selenium is for "How it looks?" part of an application only. Selenium is designed to automate front … Continue reading Selenium Interview Question 2 – Can Selenium Be Used For API Automation?

Frequently Asked Java Program 29: Java Program to Remove Duplicate Characters From Word Without Using Collection Concept

Hello Folks, As part of Frequently Asked Java Programs In Interviews For Freshers And Experienced, in this post we will see a java program to Remove Duplicate Characters From Word without Using Collection Concept. We have already seen above program using Collection concept. But interviewer might ask to solve it without using Collection APIs. Problem Statement: … Continue reading Frequently Asked Java Program 29: Java Program to Remove Duplicate Characters From Word Without Using Collection Concept

Frequently Asked Java Program 28: Java Program to Remove Duplicate Characters From Word Using Collection Concept

Hello Folks, As part of Frequently Asked Java Programs In Interviews For Freshers And Experienced, in this post we will see a java program to Remove Duplicate Characters From Word Using Collection Concept. Problem Statement: Remove all duplicate characters from given word. Keep the order of char as it appears. User Input - abcabcabcabc Output: abc … Continue reading Frequently Asked Java Program 28: Java Program to Remove Duplicate Characters From Word Using Collection Concept

Selenium Interview Question 1- What is Selenium?

The best definition of Selenium I found at its official website. It says - Selenium Automates Browser. We can automation the flows of a web based application ( An application which runs inside a browser) using Selenium. Primarily it is used to automate testing process of a web application but you can use Selenium beyond … Continue reading Selenium Interview Question 1- What is Selenium?