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 »
Hard dependencies vs Soft dependencies (TestNG) N B 3/30/2018 06:14:00 pm 0 Let us say test1 method depends on test2 method. Hard dependencies In this type of dependency, if test2 fails, test1 is not executed an... Read more »
HTTP Status codes while accessing API N B 3/30/2018 05:47:00 pm 0 2xx Success 200 OK GET The request has succeeded. 201: POST: which means CREATED. Meaning *The request has been fulfilled and resu... Read more »
Mirror Android Screen on PC for Appium Test Execution N B 2/12/2018 10:43:00 pm 0 Download the App 'Vysor' Install on PC Connect two devices In cmd type below command adb devices See List of Devices Now... Read more »
How to Setup Appium on Windows N B 2/11/2018 04:13:00 pm 0 Go to Site http://appium.io/ Download Appium for Windows Install Node JS https://nodejs.org/download/release/latest/ Update the APIs ... Read more »
Take Screenshot of particular webelement without Using AShot N B 2/06/2018 05:21:00 pm 2 Below is the Snippet That Can Help in taking Screenshot of the WebElement on the WebPage System.setProperty("webdriver.chrome... Read more »
Take Whole Page Screenshot using AShot N B 2/06/2018 05:21:00 pm 3 Download Maven Dependency <dependency> <groupId>ru.yandex.qatools.ashot</groupId> <arti... Read more »
Take Screenshot of Particular WebElement on Page using Ashot N B 2/06/2018 05:21:00 pm 0 Download Maven Dependency <dependency> <groupId>ru.yandex.qatools.ashot</groupId> <arti... Read more »
Highlight test Execution in Selenium and Also Find Coordinates of Element N B 2/06/2018 05:19:00 pm 0 package com.neeraj.test.neeraj; import org.openqa.selenium.By; import org.openqa.selenium.JavascriptExecutor; import org.openqa.seleniu... Read more »