blob: 00aa2c6b4f12d1e7f3aa6dd650a33b9c4db2a71a [file] [log] [blame]
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library webdriver;
import 'dart:async';
import 'dart:collection';
import 'dart:convert';
import 'dart:io';
import 'dart:math' show Point, Rectangle;
export 'dart:math' show Point, Rectangle;
import 'package:crypto/crypto.dart';
import 'package:matcher/matcher.dart';
import 'async_helpers.dart';
export 'async_helpers.dart' show waitFor;
part 'src/alert.dart';
part 'src/capabilities.dart';
part 'src/command_processor.dart';
part 'src/common.dart';
part 'src/exception.dart';
part 'src/keyboard.dart';
part 'src/logs.dart';
part 'src/mouse.dart';
part 'src/navigation.dart';
part 'src/options.dart';
part 'src/target_locator.dart';
part 'src/web_driver.dart';
part 'src/web_element.dart';
part 'src/window.dart';