blob: 9291907e56f24a5b49a3d9f05972ae80b7aa222c [file] [log] [blame]
import 'package:webdriver/src/common/spec.dart';
class SessionInfo {
/// Id of the session.
final String /*!*/ id;
/// Spec of the session.
///
/// This shouldn't be [WebDriverSpec.Auto].
final WebDriverSpec spec;
/// Capabilities of the session.
final Map<String, dynamic> capabilities;
SessionInfo(this.id, this.spec, this.capabilities);
}