Experience & exploration about software QA tools & techniques. Maintaining & writing blog posts on qavalidation.com! Publishing video tutorials on youtube.com/qavbox

Tap on screen using appium

Tapping on any WebElement on screen is same as clicking on the object, (just, tap word is a mobile term), but tap method provides some more features. To tap on any position on screen or center of a webElement, java-client have a class TouchAction which provides 3methods Refer – java-client docs Syntax –  TouchAction tc =…

Palindrome in java

A word, phrase, number or sequence that reads the same backwards as forwards String = reverse of a String e.g MADAM, MOM, 01022010 etc. Let’s see different ways how we can determine, if a word or string is palindrome or not in Java. package trypkg; public class Pallindrom { public static void main(String[] args) {…