Locate WebElement in Selenium with Multiple Locators N B 4/20/2018 02:25:00 pm 0 Locate WebElement in Selenium with Multiple Locators Problem: Sometimes WebElement are so dynamic in application that we can't alwa... Read more »
Read Password Protected PDF through Apache PDFBox N B 4/20/2018 12:29:00 pm 8 We can parse PDF files using Apache PDFBox Just Add the dependency of Apache PDFBox in pom.xml <dependency> ... Read more »
How to Get Continuously changing data (example BitConin conversion rate and Stock Market) using Selenium N B 4/11/2018 12:05:00 pm 0 Hi, We can use selenium to Extract the Stock price or Bit coin conversion rate using Selenium Key thing to note here is that 1.) The d... Read more »
Check if Scroll Bar is available in Page Selenium WebDriver N B 3/30/2018 07:06:00 pm 0 package test; import java.util.ArrayList; import java.util.List; import org.openqa.selenium.JavascriptExecutor; import org.openqa.se... Read more »
Interface vs Abstract Class N B 3/30/2018 07:05:00 pm 0 Interface If we know requirement clearly but we are not sure about the implementation then we should go for interface. Very Important... Read more »
String Buffer and String Builder N B 3/30/2018 07:03:00 pm 0 The StringBuffer and StringBuilder classes are used when there is a necessity to make a lot of modifications to Strings of character... Read more »
Open URL through Selenium without using get() and navigate() functions N B 3/30/2018 07:03:00 pm 0 package mypackage; import java.io.IOException; import java.util.concurrent.TimeUnit; import org.openqa.selenium.By; import org.open... Read more »
How To Catch Javascript Errors through Selenium N B 3/30/2018 06:55:00 pm 0 We need to download JAR File from here https://github.com/mguillem/JSErrorCollector/blob/master/dist/JSErrorCollector-0.6.jar package... Read more »
Minimize Window in Selenium N B 3/30/2018 06:53:00 pm 0 Unfortunately, Selenium do not provide any built-in function for minimizing the browser window, there is only function for maximizing the w... Read more »
ConcurrentModificationException in ArrayList N B 3/30/2018 06:52:00 pm 0 This generally comes when use for each loop Example package mypackage; import java.util.ArrayList; import java.util.List; public c... Read more »
Singleton Class in Java and How To Use in Selenium N B 3/30/2018 06:31:00 pm 0 A class for which we can create only one Object as the name itself suggests its a singleton Class Runtime is a singleton class We dont... Read more »