Download And Save Image Using Selenium WebDriver + Actions + Robot

Downloading Image from web page Is easy but It Is tricky task  In selenium WebDriver. Previously I described usages of Actions class of selenium WebDriver In test cases to perform tricky actions. You can find all Actions class examples link on THIS PAGE. under advanced user Interaction API tutorial section. For downloading Image, We will use same WebDriver Actions class with java … Read more

Submitting Form Using submit() Method Of Selenium WebDriver

You need to submit form in selenium very frequently as most of the sites contains forms. You will find many forms In any software web application like Contact Us form, New User Registration Form, Inquiry Form, LogIn Form etc.. Supposing you are testing one software website where you have to prepare Login form submission test … Read more

How To Open Tab And Switching Between Tabs In Selenium WebDriver

Earlier we have learnt about how to switching between windows In selenium webdriver software testing tool as described on THIS PAGE. and work with multiple IFrames In THIS POST. As all of us are used to work with multuple tabs, some peoples don’t like to work with multiple windows. So main question Is -> How to open … Read more

Set ANDROID_HOME and Path Environment Variables For SDK In Windows

ANDROID_HOME : You must need to set android_home environment variable in order to run appium test. In previous post, We learnt about how to download and install android SDK software and its different packages in windows. In order to use android environment to run appium software automation tests, You must need to set ANDROID_HOME and path … Read more