flutterdriver Questions
5
I tried to migrate my old flutter driver tests to the new integration_test package.
I copied nearly everything from the example project and executed the integration tests of the example project loc...
Velure asked 22/12, 2020 at 17:8
1
I am doing an integration test for my app on both simulators android and iOS
the android one finish like expected All tests passed and application stopped
but the iOS one finish testing and all Tes...
Hanus asked 10/9, 2021 at 11:36
1
Normally I put Key: ValueKey in a flutter element that I want to find in my test cases for testing, however this particular element already has a globalKey. So, what should I use to find the global...
Pickett asked 10/6, 2021 at 8:28
1
Solved
I have setted up Flutter Integration Testing on my project as defined here: https://flutter.dev/docs/testing/integration-tests
I used the following devDepencendies:
integration_test: ^1.0.0
flutter...
Tessera asked 15/3, 2021 at 16:46
1
I want to pass the test environment as a command line argument to my flutter driver integration test.
Is it possible ?
I did read in the below post that we can use environment variables in flutter...
Enneagon asked 23/12, 2019 at 21:50
1
Solved
I am trying to setup Flutter Driver tests for my application and the app runs async so I found https://github.com/flutter/flutter/issues/41029 which says all you need to do is add await driver.wait...
Duress asked 12/11, 2020 at 4:18
1
Solved
I am making some testing scenarios for my flutter application. One of the functionalities is "About us" section. When tapping on "About Us" user is redirected to the web page an...
Driver asked 23/10, 2020 at 10:41
1
Solved
I am new to Flutter Driver testing, and I have an issue that the tests always time out (in 30 seconds) while waiting for widgets to appear. My main class is only checking whether the Firebase user ...
Prescribe asked 17/3, 2020 at 16:33
3
Solved
How can I use the system back button in an integration test?
So I'm using flutter and am writing integration tests, in most circumstances I can use the AppBar navigation, finding it by tool tip l...
Coati asked 1/3, 2019 at 15:33
2
I am working with FlutterDriver, I have an IconButton defined and a key set as shown:
Center(
child: IconButton(
key: Key('moredots'),
icon: Icon(Icons.more_vert),
onPressed: () {
showD...
Celaeno asked 5/11, 2019 at 17:38
1
© 2022 - 2024 — McMap. All rights reserved.