我正在使用Appium Desktop Inspector来查找元素。为了获取EmailId的Xpath,我使用了这样的Class //driver.findElement(By.className("android.widget.EditText")).sendKeys("XYZ“ );
并且为了获得密码的Xpath,我必须使用Class //driver.findElement(By.className("android.widget.EditText“))。sendKeys(” XYZ“);
以下我尝试过的方法: driver.findElementByXPath(“ // android.view.ViewGroup [@ content-desc ='EMAIL ID'] / following-sibling :: android.view.ViewGroup / android.widget.EditText”)。sendKeys(“ aaaaa”); 但我从来没有成功。 如何使用父代,子代和同级兄弟获得Xpath?
ScrollView--ViewGroup
ViewGroup--ViewGroup
ViewGroup
ViewGroup------ViewGroup-----ViewGroup-----EditText
ViewGroup
ViewGroup