I have mobile native application (iOS and Android) that I want to automate using Python - application interaction and logic look similar for iOS and Android. What is the best way to share test logic across mobile platform.
I found a way how JavaClient works - simply use annotations @AndroidFindBy and @iOSFindBy.
Is there alternative for Python? Having many if\else in my code does not work for me.