如何为下面的截图编写xpath

时间:2016-03-30 14:44:23

标签: appium

我是appium的新手。我想在屏幕截图中找到用户名和密码的元素。如果我使用// class,则用户名和密码的值相同。请帮忙。我想知道所有识别元素的方法(如使用class,id,xpath),如果可能的话。

提前致谢。请在下面找到截图

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

使用此:

用户名 - driver.findElementByXPath("//*[@class='android.widget.EditText' and @index='0']");

密码 - driver.findElementByXPath("//*[@class='android.widget.EditText' and @index='1']");