Selenium Test Execution on Sauce Labs N B 6/16/2019 10:40:00 pm 0 We can use Sauce Labs for executing tests on Different Environment using SauceLabs Key thing is we can set various capabilities to c... Read more »
Running Appium on AWS Device Farm N B 6/16/2019 10:39:00 pm 0 For Setting up The Appium Script on AWS device Farm we need lot of Plugins to Setup on Pom.xml Example below Plugins are required W... Read more »
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 10 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 // Fetch console logs LogEntries logs = driver.manage(). logs().get (LogType.BROWSER); for (LogEntry entry : logs) { ... Read more »