blob: eee452478647b4cf61f1f7368b612c57da24d40c [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.
import 'dart:async';
import 'dart:io';
import '../../backend/test_platform.dart';
import '../executable_settings.dart';
import 'browser.dart';
import 'default_settings.dart';
/// A class for running an instance of Internet Explorer.
///
/// Any errors starting or running the process are reported through [onExit].
class InternetExplorer extends Browser {
final name = "Internet Explorer";
InternetExplorer(url, {ExecutableSettings settings})
: super(() => _startBrowser(url, settings));
/// Starts a new instance of Internet Explorer open to the given [url], which
/// may be a [Uri] or a [String].
static Future<Process> _startBrowser(url, ExecutableSettings settings) {
settings ??= defaultSettings[TestPlatform.dartium];
return Process.start(settings.executable,
['-extoff', url.toString()]..addAll(settings.arguments));
}
}