WebElement name = driver.findElementByAndroidUIAutomator("new UiSelector().className(\"android.widget.FrameLayout\").index(1).childSelector(new UiSelector()"
           + ".className(\"android.widget.EditText\").index(0))");WebElement pw= driver.findElementByAndroidUIAutomator("new UiSelector().className(\"android.widget.FrameLayout\").index(2).childSelector(new UiSelector()"
           + ".className(\"android.widget.EditText\").index(0))");
name这个可以定位到第一个EditText。为什么pw定位失败。
如果用fromParent方法该如何写??