flutter_driver.dart 991 Bytes
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 14
///
/// This is Flutter's version of Selenium WebDriver (generic web),
/// Protractor (Angular), Espresso (Android) or Earl Gray (iOS).
library flutter_driver;

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

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

export 'src/find.dart' show
28
  SerializableFinder,
29 30 31 32 33 34 35 36 37
  GetTextResult;

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

export 'src/message.dart' show
  Command,
  Result;
38 39 40

export 'src/timeline_summary.dart' show
  TimelineSummary;
41 42 43 44

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