blob: f612e863be28304f65dfb15cf165c1cdc3e7e1b7 [file] [log] [blame]
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
@TestOn("vm")
library webdriver.io_test;
import 'package:test/test.dart';
import 'src/alert.dart' as alert;
import 'src/command_event.dart' as command_event;
import 'src/keyboard.dart' as keyboard;
import 'src/logs.dart' as logs;
import 'src/mouse.dart' as mouse;
import 'src/navigation.dart' as navigation;
import 'src/options.dart' as options;
import 'src/target_locator.dart' as target_locator;
import 'src/web_driver.dart' as web_driver;
import 'src/web_element.dart' as web_element;
import 'src/window.dart' as window;
import 'support/firefox_profile.dart' as firefox_profile;
import 'io_config.dart' as config;
void main() {
config.config();
alert.runTests();
command_event.runTests();
firefox_profile.runTests();
keyboard.runTests();
logs.runTests();
mouse.runTests();
navigation.runTests();
options.runTests();
target_locator.runTests();
web_driver.runTests();
web_element.runTests();
window.runTests();
}