简体   繁体   中英

Selenium/Java - Unclickable XPATH

I have application to automate and there is a XPATH which is not clickable in the automated test. Appium says it's visible and clickable but test run says: nope.

I have tried but it doesn't work:

@FindBy(how = How.XPATH, using = "//android.view.View[@content-desc=\"Benachrichtigung WIll's Haus Entfernung 0 km Deine Reichweite 0.0 km Zu gehen 0.0 km\"]/android.widget.ImageView[18]")
    public WebElement clickIt;

Is there any other way to click it?

Appium SShot

You received a warning that explains exactly:

Using XPath locators is not recommended and can lead to fragile tests. Ask your development team to provide unique accessibility locators instead!

See similar issue .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM