You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 23, 2023. It is now read-only.
AppiumFlutterLibrary has a complete [Keyword Documentation](https://igortavtib.github.io/robotframework-appiumflutterlibrary/AppiumFlutterLibrary.html).
21
+
22
+
## Flutter setup
23
+
24
+
To use AppiumFlutterLibrary you will need to make a simple setup in your Flutter project.
25
+
26
+
At first, include flutter_driver package to your dev dependencies at *pubspec.yaml*:
27
+
28
+
```yaml
29
+
30
+
dev_dependencies:
31
+
flutter_test:
32
+
sdk: flutter
33
+
flutter_driver:
34
+
sdk: flutter
35
+
36
+
```
37
+
38
+
Then go to your *main.dart* file and add **enableFlutterDriverExtension()** to your main function before **runApp()**
0 commit comments