- Add customizable
flutter_driver
adaptor. - Add utilities for tracking frame performance in an e2e test.
- Fix incorrect test results when one test passes then another fails
- Fix
setSurfaceSize
for e2e tests
- Added
data
in the reported json.
- Breaking change
E2EPlugin
exports aFuture
fortestResults
.
- Fixed the device pixel ratio problem.
- Breaking change by default, tests will use the device window size.
Tests can still override the window size by using the
setSurfaceSize
method. - Breaking change If using Flutter 1.19.0-2.0.pre.196 or greater, the
testTextInput
will no longer automatically register. - Breaking change If using Flutter 1.19.0-2.0.pre.196 or greater, the
HttpOverrides
will no longer be set by default. - Minor formatting changes to Dart code.
- Fixed code snippet in readme that referenced a non-existent
result
variable.
- Bumps AGP to 3.6.3
- Changes android-retrofuture dependency type to "implementation"
- Post-v2 Android embedding cleanup.
- Uses CompletableFuture from android-retrofuture allow compatibility with API < 24.
- Adds support for Android E2E tests that utilize other @Rule's, like GrantPermissionRule.
- Fix CocoaPods podspec lint warnings.
- Remove Android dependencies fallback.
- Require Flutter SDK 1.12.13+hotfix.5 or greater.
- Breaking change Driver request_data call's response has changed to encapsulate the failure details.
- Details for failure cases are added: failed method name, stack trace.
- Replace deprecated
getFlutterEngine
call on Android.
- Updates documentation to instruct developers not to launch the activity since we are doing it for them.
- Renames
FlutterRunner
toFlutterTestRunner
to avoid conflict with Fuchsia.
- Fixed a hang that occurred on platforms that don't have a
MethodChannel
listener registered..
- Fixed code snippet in the readme under the "Using Flutter driver to run tests" section.
- Make the pedantic dev_dependency explicit.
- Registering web service extension for using e2e with web.
- Fixed problem with XCTest in XCode 11.3 where the testing bundles were getting opened multiple times which interfered with the singleton logic for E2EPlugin.
- Added a driver test for failure behavior.
- Updates
E2EPlugin
and add skeleton iOS test caseE2EIosTest
. - Adds instructions to README.md about e2e testing on iOS devices.
- Adds iOS e2e testing to example.
- Remove the deprecated
author:
field from pubspec.yaml - Migrate the plugin to the pubspec platforms manifest.
- Require Flutter SDK 1.10.0 or greater.
- Adds an android dummy project to silence warnings and removes unnecessary .gitignore files.
- Fix pedantic lints. Adds a missing await in the example test and some missing documentation.
- Added a stub macos implementation
- Added a macos example
- Updated README.
- Support the v2 Android embedder.
- Print a warning if the plugin is not registered.
- Updated method channel name.
- Set a Flutter minimum SDK version.
- Updated README.
- Renamed package from instrumentation_adapter to e2e.
- Refactored example app test.
- Breaking change. Renamed
InstrumentationAdapterFlutterBinding
toE2EWidgetsFlutterBinding
. - Updated README.
- Migrate example to AndroidX.
- Define clang module for iOS.
- Added example app.
- Added stub iOS implementation.
- Updated README.
- No longer throws errors when running tests on the host.
- Added support for running tests using Flutter driver.
- Updates about using androidx library.
- Update boilerplate test to use
@Rule
instead ofFlutterTest
.
- Document current usage instructions, which require adding a Java test file.
- Initial release