How to find click a element that don’t have a text,i tried xpath by using resource-id i am unable click menu

I can’t able to click this menu button in this app. please help me to find the element id and make it clickable.

i tried below xpath by using resource-id
driver.findElement(By.xpath("//android.widget.ImageButton[@clicable=‘true’]")).click();

can any one please help me to solve my problem

I’m assuming you meant clickable instead of clicable

I’d try findElement(By.id())

Using xpath in this view is not preferable, as we can have multiple elements with the same class name.

We directly have an id associated for the element. You can use the id and locate the element.

driver.findElement(By.id(com.ipay/test:id/dashboard_menu_imagbtn));

Thank you for your reply…its working