Reputation: 1
Currently, we have a Serenity BDD/Java framework for our front-end automation. This is for component and E2E tests. However, we also have a Flutter driver framework for our app/api tests. We would like to integrate the two.
There was an idea to use Appium. However, I wanted to know if anyone managed to find a way to integrate the two frameworks without Appium. I am not sure this is even possible. The reason is that Flutter is much faster, and I've seen a few issues when some were automating Flutter with Appium.
Upvotes: 0
Views: 122
Reputation: 3068
Integrating without Appium While Appium is a popular option for cross-platform mobile automation, it is possible to integrate Serenity BDD/Java with the Flutter Driver framework without using Appium. This approach can potentially offer better performance and avoid potential issues associated with Appium and Flutter. Here are two potential approaches for integration:
Upvotes: 0