- 10 Mar, 2017 1 commit
-
-
Yegor authored
-
- 04 Mar, 2017 1 commit
-
-
Chris Bracken authored
-
- 02 Mar, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 01 Mar, 2017 1 commit
-
-
Yegor authored
This TODO was fixed by the transition to `Finder` objects.
-
- 28 Feb, 2017 1 commit
-
-
Yegor authored
-
- 23 Feb, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 10 Feb, 2017 1 commit
-
-
Alexandre Ardhuin authored
-
- 09 Feb, 2017 1 commit
-
-
Ian Hickson authored
-
- 27 Jan, 2017 1 commit
-
-
Ian Hickson authored
This remove a very brittle aspect of flutter drive, whereby it would assume a known port instead of explicitly finding out what it was. Fixes #7692 and hopefully fixes the devicelab tests.
-
- 22 Jan, 2017 1 commit
-
-
Ian Hickson authored
-
- 18 Jan, 2017 1 commit
-
-
Adam Barth authored
I see these errors in Atom on my Mac. I'm not sure why they're not being picked up by the bots.
-
- 17 Jan, 2017 1 commit
-
-
Michael Goderbauer authored
This is handy for debugging a test. Communication is logged to: * `flutter_driver_commands_{x}.log`, where {x} is an integer, and * (if requested by user) to stdout fixes #7473
-
- 13 Jan, 2017 1 commit
-
-
Michael Goderbauer authored
With frameSync enabled, flutter_driver actions will only be performed when there are no pending frames in the app under test. This helps with reducing flakiness.
-
- 09 Jan, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 06 Jan, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 28 Nov, 2016 1 commit
-
-
Chris Bracken authored
Returns a dump of the application's render tree.
-
- 08 Nov, 2016 1 commit
-
-
Yegor authored
-
- 25 Oct, 2016 1 commit
-
-
Chris Bracken authored
-
- 24 Oct, 2016 1 commit
-
-
Chris Bracken authored
If a URL is not explicitly specified by the test author, check for an environment-specified URL before falling back to the default value.
-
- 03 Oct, 2016 1 commit
-
-
Jason Simmons authored
-
- 20 Sep, 2016 1 commit
-
-
Dan Rubel authored
-
- 08 Sep, 2016 1 commit
-
-
Phil Quitslund authored
* Udpate to Dart `1.20.0-dev.1.0`. Udpate to Dart `1.20.0-dev.1.0` and corresponding `analyzer` package. * Added `--no-packages-dir`. * Revert extension to master. * Added ignores. * Review nits. * More nits.
-
- 14 Jul, 2016 1 commit
-
-
YoungSeok Yoon authored
* Driver commands for controlling the Input widget This commit introduces two new driver commands for controlling the material Input widget. * setInputText(SerializableFinder finder, String text) * submitInputText(SerializableFinder finder) Since it is not possible to directly modify the Input widget text, these driver commands invokes the handler functions of the Input widget: onChanged and onSubmitted, respectively. The `submitInputText` command returns the submitted String as a result. * Make input command handler methods private Addressing comments from @yjbanov.
-
- 25 Jun, 2016 1 commit
-
-
Kaiyuan Wang authored
* Fix the issue that flutter driver does not close _peer when driver.close() is invoked. The problem introduces the following unexpected behavior: 1. Launch an app using "flutter run ..." command 2. Run the flutter driver test using "dart flutter_test.dart" The test will not exit after running. The problem will be solved if _peer is closed. * Fix formatting issue
-
- 10 May, 2016 1 commit
-
-
Hans Muller authored
-
- 04 May, 2016 2 commits
-
-
pq authored
As per the recent fix to the `always_specify_types` lint (https://github.com/dart-lang/linter/issues/199), literal maps and lists are now expected to be explicitly typed. Running that lint on the repo identifies quite a few spots to update. This focuses on `flutter_driver` and `flutter_sprites` (somewhat arbitrarily) but the changes are fairly representative. Note there are a number of places where I made a quick judgement on how specific to make the types. Feedback on those is welcome. (Especially as we move forward with more.)
-
Hans Muller authored
* Gallery demo start-time performance test
-
- 19 Apr, 2016 2 commits
-
-
Ian Hickson authored
Bindings now have a debugRegisterServiceExtensions() method that is invoked in debug mode (only). (Once we have a profile mode, there'll be a registerProfileServiceExtensions() method that gets called in that mode only to register extensions that apply then.) The BindingBase class provides convenience methods for registering service extensions that do the equivalent of: ```dart void extension() { ... } bool extension([bool enabled]) { ... } double extension([double extension]) { ... } Map<String, String> extension([Map<String, String> parameters]) { ... } ``` The BindingBase class also itself registers ext.flutter.reassemble, which it has call a function on the binding called reassembleApplication(). The Scheduler binding now exposes the preexisting ext.flutter.timeDilation. The Renderer binding now exposes the preexisting ext.flutter.debugPaint. The Renderer binding hooks reassembleApplication to trigger the rendering tree to be reprocessed (in particular, to fix up the optimisation closures). All the logic from rendering/debug.dart about service extensions is replaced by the above. I moved basic_types to foundation. The FlutterWidgets binding hooks reassembleApplication to trigger the widget tree to be entirely rebuilt. Flutter Driver now uses ext.flutter.driver instead of ext.flutter_driver, and is hooked using the same binding mechanism. Eventually we'll probably move the logic into the Flutter library so that you just get it without having to invoke a special method first.
-
Yegor authored
* [driver] "waitFor" command in place of broken "exits" * [driver] wait using frame callback
-
- 15 Apr, 2016 2 commits
- 13 Apr, 2016 1 commit
-
-
Eric Seidel authored
When @jason-simons added the diagnostic server on Android this happened to conflict with flutter drive's usage of 8182. We really should fix both of these port users to be dynamic but this fixes https://github.com/flutter/flutter/issues/3291 for now. @yjbanov
-
- 11 Apr, 2016 1 commit
-
-
Seth Ladd authored
-
- 05 Apr, 2016 1 commit
-
-
Yegor authored
Fixes https://github.com/flutter/flutter/issues/2713
-
- 31 Mar, 2016 1 commit
-
-
Yegor Jbanov authored
-
- 29 Mar, 2016 1 commit
-
-
Yegor Jbanov authored
The way we pick observatory port # has changed and we have broken logic that handles port 8181. To fix the buildbot, switch to port 8182. We can later figure out what we want to do when we clean up port handling. The old VM extention for extracting the timeline data is gone. Switch to the new '_getVMTimeline' API.
-
- 18 Mar, 2016 1 commit
-
-
Yegor Jbanov authored
-
- 14 Mar, 2016 3 commits
-
-
yjbanov authored
-
Ian Hickson authored
-
Ian Hickson authored
-