I am new to Appium and have been trying to automate the Conversion Calculator app for Android. Am getting the error \"org.openqa.selenium.NoSuchElementException: An element
Possible Cause:
Please try with the following:
Solution1:
List editText = driver.findElements(By.className("android.widget.EditText")); editText.get(0).sendKeys("123");
0 - Index of EditText
Solution2:
Use any other locating strategy like Xpath.