Hi, I would like to rise up a discussion related which is best to use in a automation project: UI automator or Appium inspector:
For example which is best to use:
final String ANDROID_ELEM= "new UiSelector().resourceIdMatches(\".id\")";
AndroidFindBy(uiAutomator = ANDROID_ELEM)
private MobileElement android_elem;
or
final String ANDROID_ELEM= "id")";
AndroidFindBy(id = ANDROID_ELEM)
private MobileElement android_elem;
Please give advice pro and contra.
Thanks,
I am sure this topic will help a lot of beginners in automation testing