blob: 452f78dd8e98779cf7f446f2d0258ffd9b55180e [file] [log] [blame]
/// Common interface for web element, containing only the element id.
abstract class WebElement {
String get id;
Map<String, String> toJson() => {'ELEMENT': id};
}