Appium – How To Swipe Vertical And Horizontal In Android Automation

This guide will show you how to swipe vertical and horizontal in Appium using simple code examples. You’ll learn how to automate swipe actions on mobile devices for both Android and iOS using different techniques supported by Appium. Earlier In previous post, we learnt how to interact with android mobile gesture to perform drag and … Read more

Webdriver “driver.getTitle()” And “assertEquals” With Example

What is the use of getTitle in Selenium? getTitle()” in selenium is used to get the title of the page in selenium. Many people don’t know how to get the title of a page in selenium webdriver. If you want to verify the title on Selenium automation testing then you should know how to get the window … Read more

IEDriver – How To Resolve Set IE browser Zoom Level To 100% Error On RunTime

If your IE browser zoom level Is not set to 100% then you will get an error like “Browser zoom level was set to XYZ%. It should be set to 100% “.  Earlier we learnt In THIS POST -> How to resolve this error by setting IE browser’s zoom level to 100% manually before running software test … Read more

How To Get Height And Width Of Element In Selenium WebDriver

As you know, Every web element has Its own height and width or we can say size of element. Sometimes you need to perform pixel to pixel testing as per client’s requirement like each and every button’s height should be x(some pixels) and width should be y(some pixels) through out the site. Now If you … Read more