appium/appium-flutter-driver

Unable to Interact with Elements Beyond Splash Screen in Flutter App

Shivasiny opened this issue · 2 comments

I’m currently facing issues with automating my Flutter app using AppiumFlutterDriver with Java. While the driver can interact with the splash screen element, I am unable to interact with any other elements in the app. The application is a dynamically changing newspaper app, which may be affecting element recognition.

Our app hasn’t provided accessibility keys for all elements. I have tried using Key, Semantics Label, and Text, but these methods only work for the splash screen element; they do not work for any other elements.

Any guidance or insights on how to resolve this issue would be greatly appreciated.

Maybe can try setting the setFrameSync to false
driver.execute('flutter:setFrameSync', bool , durationMilliseconds)

Thank you.. It is working.