So I am trying to get fastlane screenshot
working and that means getting Xcode UITest working...I build an Ionic app that uses a 3-bar symbol as a slide-out button and that sort of thing is trivial with webapps.
However, when I use uITest record, it misinterprets the button and ends up representing like this
app.buttons[""].tap()
When it tries to run the saved UI commands, it obviously chokes on this and crashes the test...is there any other way to represent the button other then using its label text like that?
It would seem to be that it could use the ID or NAME for the button identifier, but I have yet to find that solution for this problem anywhere.