'Allow permission dialog in Flutter end-to-end testing?
Solution 1:[1]
Other answers will not help you if you are using the latest Flutter Integration Testing as there we don't require FlutterDriver to connect.
So now, you need to add the below code in test_driver.dart file where we initialize integrationDriver()
Future<void> main() async {
final Map<String, String> envVars = Platform.environment;
String? adbPath = join(envVars['ANDROID_SDK_ROOT'] ?? envVars['ANDROID_HOME']!,
'platform-tools',
Platform.isWindows ? 'adb.exe' : 'adb',
);
await Process.run(adbPath , ['shell' ,'pm', 'grant', 'com.example', 'android.permission.CAMERA']);
await Process.run(adbPath , ['shell' ,'pm', 'grant', 'com.example', 'android.permission.WRITE_EXTERNAL_STORAGE']);
await integrationDriver();
}
This change is required as FlutterDriver
makes the connection once you initialized and connect it, but the new flow of integration testing already had a connection, so we need to initialize it before the connection happens.
To run code, use the below command on terminal, as you see for better result I have created two folder,
test_driver: Contains the driver code mentioned above.
integration_test: Contains test files.
flutter drive --driver=test_driver/test_driver.dart --target=integration_test/my_test.dart
Solution 2:[2]
for me above code is not working don't know why
then i'm tried with below code and its working
setUpAll(() async {
await Process.run('add_adb_path/adb.exe' , ['shell' ,'pm', 'grant', 'add_app_package_name', 'android.permission.ACCESS_MEDIA_LOCATION']);
await Process.run('add_adb_path/adb.exe' , ['shell' ,'pm', 'grant', 'add_app_package_name', 'android.permission.READ_EXTERNAL_STORAGE']);
await Process.run('add_adb_path/adb.exe' , ['shell' ,'pm', 'grant', 'add_app_package_name', 'android.permission.WRITE_EXTERNAL_STORAGE']);
driver = await FlutterDriver.connect();
});
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | |
Solution 2 | Susovan Das |