Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Nov 23, 2023. It is now read-only.

Commit 663d617

Browse files
Update README.md
1 parent c445852 commit 663d617

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

‎README.md‎

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,37 @@ Install using [pip](https://pypi.org/project/robotframework-appiumflutterlibrary
1414
```bash
1515
pip install --upgrade robotframework-appiumflutterlibrary
1616
```
17+
18+
## Keyword documentation
19+
20+
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()**
39+
40+
```dart
41+
import 'package:flutter/material.dart';
42+
import 'package:flutter_driver/driver_extension.dart';
43+
44+
void main() {
45+
enableFlutterDriverExtension();
46+
runApp(const MyApp());
47+
}
48+
49+
...
50+
```

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /