How locating object is different in Appium than Selenium

In Selenium, we can use ID, Name ,Xpath, tagName, CSS etc to locate an object. On the same note, what are different object locator method available in Appium.

accessibilityId, androidUIAutomator, iosUIAutomation are additionally available. They are good against native content. Id, name, tag, xpath, className are always valid. css, linkText, partialLinkText are not valid against native app content.

1 Like