README.md 744 Bytes
Newer Older
1 2 3 4 5
# Flutter for Web Integration testing with `integration_test` package

These are web tests which are using `integration_test` (aka e2e) package. In order to run them locally, run `chromedriver`:

```
6
chromedriver --port=4444
7 8
```

9 10
For more details on running/downloading chromedriver, use the [link](https://chromedriver.chromium.org/getting-started).

11 12 13 14 15 16
Later use the following command:

```
flutter drive --target=test_driver/text_editing_integration.dart -d web-server --browser-name=chrome
```

17
For more details on running a Flutter Driver test on web use the [link](https://github.com/flutter/flutter/wiki/Running-Flutter-Driver-tests-with-Web)
18
For more details on `integration_test` package [link](https://pub.dev/packages/integration_test)