flutter_driver.dart 1.02 KB
Newer Older
1 2 3 4
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5
/// Provides API to test Flutter applications that run on real
6 7
/// devices and emulators.
///
8
/// The application runs in a separate process from the test itself.
9 10 11 12 13
///
/// This is Flutter's version of Selenium WebDriver (generic web),
/// Protractor (Angular), Espresso (Android) or Earl Gray (iOS).
library flutter_driver;

14 15 16
export 'src/common.dart' show
  testOutputsDirectory;

17
export 'src/driver.dart' show
18 19 20
  find,
  CommonFinders,
  EvaluatorFunction,
21
  FlutterDriver,
22
  TimelineStream;
23 24 25 26 27 28 29 30

export 'src/error.dart' show
  DriverError,
  LogLevel,
  LogRecord,
  flutterDriverLog;

export 'src/find.dart' show
31
  SerializableFinder,
32 33 34 35 36 37 38 39 40
  GetTextResult;

export 'src/health.dart' show
  Health,
  HealthStatus;

export 'src/message.dart' show
  Command,
  Result;
41 42 43

export 'src/timeline_summary.dart' show
  TimelineSummary;
44 45 46 47

export 'src/timeline.dart' show
  Timeline,
  TimelineEvent;