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 2 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 »
HAR Analyzer (Catch Network Calls when Automating in Selenium) N B 2/06/2018 05:14:00 pm 2 Download BrowserMob Proxy Add below Dependency <dependency> <groupId>net.lightbody.bmp</groupId> <artifactId... Read more »
Upload Multiple Files using Auto IT in Selenium N B 2/06/2018 05:13:00 pm 0 Below is the AUTO It Script for Mutiple Files $vVariable = """C:\Users\NEERAJ\Desktop\Manage_Plugins.jpg"" ... Read more »
Add Gitignore file to existing repo N B 2/06/2018 05:00:00 pm 0 Take a new checkout of the existing code from Git Add gitignore file for example touch .gitignore Add following /target .idea/ *.... Read more »
Handle Cookies in Selenium WebDriver N B 2/06/2018 04:58:00 pm 0 To Get Cookie Value package mypackage; import org.openqa.selenium.Cookie; import org.openqa.selenium.WebDriver; import org.openqa.sel... Read more »