appium / appium-flutter-driver

Appium Flutter Driver is a test automation tool for Flutter apps on multiple platforms/OSes. Appium Flutter Driver is part of the Appium mobile test automation tool maintained by community
MIT License
440 stars 179 forks source link

Is there any "waitForTapable" analog but for element's visibility? #612

Closed Vladeezyy closed 8 months ago

Vladeezyy commented 8 months ago

driver's methods for visibility are not working for me, as I understand that's because of flutter app's element nature and I need to implement something like waitForVisibility, can I do it somehow ?

KazuCocoa commented 8 months ago

Afaik, no, since https://api.flutter.dev/flutter/flutter_driver/flutter_driver-library.html (this driver's dependent lib) does not provide such functionality. So far, tappable or just wait for (if an element exists) is what can do in the FLUTTER context.