
* Support Flutter Driver test for Flutter Web application. * Support Flutter Driver test for Flutter Web application. * Fix documentation issues. * Support Flutter Driver test for Flutter Web application. * Fix documentation. * Remove unused file from dartdoc check. * Sync to date. * Revert change to dartdoc. * Address comments. * Apply suggestions from code review Co-Authored-By: Jonah Williams <jonahwilliams@google.com> * Update copyrights. * Update allowed list for browsers. * Verify command line arguments for Drive command is correctly parsed. * Make waitUntilFirstFrameRasterized throw unimplementedError for Flutter Web Driver. * Add comment for why sync WebDriver is used. * Update documentations. * Add more unit tests and update documentation. * Configure test.dart so that web_extension_test will be executed with --platform=chrome. * Revert unnecessary changes. * Add new file path for Windows to blacklist. * Reconstruct the structure of flutter_driver/test/src folder to remove filtering logic in dev/bots/test.dart/ * Fix path to web_extension_test.dart. * Add instructions for how to use WebFlutterDriver. * Update getLayerTree to use sendCommand instead of _sendCommand. * Update pubspec files.
49 lines
1.5 KiB
Dart
49 lines
1.5 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:async';
|
|
|
|
import 'package:flutter_driver/flutter_driver.dart';
|
|
import 'package:test/test.dart' hide TypeMatcher, isInstanceOf;
|
|
|
|
void main() {
|
|
group('scrolling performance test', () {
|
|
FlutterDriver driver;
|
|
|
|
setUpAll(() async {
|
|
driver = await FlutterDriver.connect(browser: true);
|
|
});
|
|
|
|
tearDownAll(() async {
|
|
if (driver != null)
|
|
driver.close();
|
|
});
|
|
|
|
test('measure', () async {
|
|
final Timeline timeline = await driver.traceAction(() async {
|
|
await driver.tap(find.text('Material'));
|
|
|
|
final SerializableFinder demoList = find.byValueKey('GalleryDemoList');
|
|
|
|
// TODO(eseidel): These are very artificial scrolls, we should use better
|
|
// https://github.com/flutter/flutter/issues/3316
|
|
// Scroll down
|
|
for (int i = 0; i < 5; i++) {
|
|
await driver.scroll(demoList, 0.0, -300.0, const Duration(milliseconds: 300));
|
|
await Future<void>.delayed(const Duration(milliseconds: 500));
|
|
}
|
|
|
|
// Scroll up
|
|
for (int i = 0; i < 5; i++) {
|
|
await driver.scroll(demoList, 0.0, 300.0, const Duration(milliseconds: 300));
|
|
await Future<void>.delayed(const Duration(milliseconds: 500));
|
|
}
|
|
});
|
|
|
|
TimelineSummary.summarize(timeline)
|
|
..writeTimelineToFile('home_scroll_perf', pretty: true);
|
|
});
|
|
});
|
|
}
|