MatteoAntolini

Results 9 comments of MatteoAntolini

I'm currently having the same issue with `firebase_analytics`. The events are logged but there is no data about the campaing parameters

No, it's on mobile Android. I found out that this cloud happens on Android Emulators that have no access to Google Play Services. Maybe is some kind of integration with...

The error `Unrecognized feature: 'payment' when calling redirectToCheckout` stems from the fact that the Payment Request API isn't supported in Flutter's WebView. This API allows for seamless payment procedures on...

I have the same problem. I cannot tap elements on the screen. Tested with waitForTappable with 10s timeout and it returns 500 Appium version 2.0.0-beta.46 Flutter driver version 1.10.0

Appium code ```javascript const wdio = require('webdriverio'); const assert = require('assert'); const find = require('appium-flutter-finder'); const osSpecificOps = process.env.APPIUM_OS === 'android' ? { 'appium:platformName': 'Android', 'appium:deviceName': 'emulator-5554', 'appium:app': 'C:/Users/Administrator/Documents/app/flutter_hoongry.apk', }...

"Il tuo profilo" is `Key("profile")` Appium tries 3 times to execute `flutter:waitForTappable`. The first time is between flutter splash and this screen. The second and the third is on this...

I created a brand new app counter with the same appium server configuration and the same appium client configuration. It worked as expected. It waited for the button to be...

@arctouch-felipeschiquetti Thank you, with `flutter:setFrameSync` at `false` it worked, but I don't think that's the real solution. Maybe there is some widget on my screen that keeps refreshing. I need...