An overview of java-Collections-List,Set,Map,Queue Interface are explained in this post. For complete understanding please refer to Sun Certified Programmer for Java 6 Study Guide available in the scribd.com. Please click… Read more »
Selenium WebDriver Reporting – Extent Reports Refer to the below Links for Practise Selenium Wiki Complete List of Selenium Basics 50 Real Time Interview Questions Real Time Scenario’s Java Platform… Read more »
Why Headless Chrome? A headless browser is a great tool for automated testing and server environments where you don’t need a visible UI shell. This can be achieved by using… Read more »
1. How to apply break from an nested for loop in java? Lets try this on a Real Time Website -> https://demo.openmrs.org/openmrs/login.htm Access the url and enter Admin/Admin123 as credentials… Read more »
MYSQL DataBase testing using Selenium WebDriver-Step by Step Guide: Refer to the below Links for Practise Selenium Wiki Complete List of Selenium Basics 50 Real Time Interview Questions Real Time… Read more »
MySQL Data Base INSTALLATION testing Step-by-Step Guide Introduction SQL Part of “MYSQL” stands for Structured Query Language. MYSQL is a relational database from oracle where data is stored in tables…. Read more »
Refer to the below Links for Practise Selenium Wiki Selenium Quiz Selenium Advanced Quiz Java Quiz Java OOPS Quiz Selenium WebDriver Tester Resume List the Java Classes available in Selenium… Read more »
Refer to the below Links for Practice Collections in Java Complete List of Selenium Basics 50 Real Time Interview Questions Real Time Scenario’s Java Platform Standard Edition 8 Documentation Java… Read more »
Selenium Locators Identification of Objects/WebElements/HTML Components can be done in 8 ways: (or) Locators: 1. ID Locator driver.findElement(By.id(“usernmae”)) 2. NAME LOCATOR driver.findElement(By.name(“username”)); driver.findElement(By.name(“password”)); – 3. CLASSNAME LOCATOR class=”textboxcolor” driver.findElement(By.className(“textboxcolor”)); class=”inputtext… Read more »
Implicit Wait,Explicit Wait,Fluent Wait,TakesScreenshot Synchronization The communication between Selenium WebDriver script and the Application under Test (AUT) is known as synchronization. Resolution: Insert wait statements in the WebDriver script. Unconditional… Read more »