My tests from FF do not work in Firebase Testlab or Google Play Console

Troubleshooting

Hello,

I would like to test my Firebase app in Firebase Test Lab. However, I keep encountering errors.

I hope it’s something I’m doing wrong, and one of you can help guide me in the right direction 😊

Here’s the code that Firebase Test Lab is using for testing:

Unused text input: no resource name matched the regex "emailAddress_tclx"

Unused text input: no resource name matched the regex "password_bzgq"

So it can’t find my fields. What am I doing wrong?

You ca see my code from FF and also how I insert the email and password in Test Lab.

Thanks! ❤️

What have you tried so far?

Here is a part from my test code:

await tester.pumpAndSettle(Duration(milliseconds: 3000));       await tester.enterText(find.byKey(ValueKey('emailAddress_tclx')),           '[email protected]');       
await tester.enterText(find.byKey(ValueKey('password_bzgq')), '123');       await tester.tap(find.byKey(ValueKey('Button_vn4g')));       
await tester.pumpAndSettle(Duration(milliseconds: 3000));       expect(find.byKey(ValueKey('FloatingActionButton_vrwg')), findsOneWidget);
Did you check FlutterFlow's Documentation for this topic?
Yes
2