I am totally new on Appium,want to find element By.name,while doing that I am searching from list so getting result of search text matching,but its not clicking Exact name matching element even it is not clicking any element from list,may be its trying to click Text typed. Don't know how to apply multiple condition to find element.So how can we do that ? attached image related to this:
2)Image:2
we can use xpath to apply more condition to find element even in appium too,for above case used 2nd Image & applied condition as
driver.findElement(By.xpath("//android.widget.TextView[@text='Biscuit']")).click();
so we achieve it with two condition
1.className="android.widget.TextView" and text='Biscuit'
notice that clickable=false still it doesn't matter, it click clickable Parent
for more details: http://www.software-testing-tutorials-automation.com/2015/10/ui-automator-viewer-get-android-app.html