Hello,
Is there a way to identify a button element of XCUIElementTypeNavigationBar
Thanks for your help.
Hello,
Is there a way to identify a button element of XCUIElementTypeNavigationBar
Thanks for your help.
it is all depends on your app.
share result of:
System.out.println(driver.getPageSource())
executed while this screen visible at gist.github.com and we can help you
Please find the result on this link https://gist.github.com/msissani/0e2a698f93c2dc2e03c48013b74685d9
You could only see an element in Appium if it is made accessible in the application code
@Munitor no luck. This element not accessible. There are two ways:
private let myName = UILabel().id("myName")
init() {
super.init(xxxxx)
...
accessibilityElements = [myName]
@Aleksei @mykola-mokhnach Thanks for your feedback . I will check with dev team and let you know
@Aleksei @mykola-mokhnach Finally, This element was not accessible. I had to customize this button in order to put accessiblity ID
Thanks for your help