Sign in
dart
/
external
/
github.com
/
google
/
webdriver.dart
/
e7d943a830dc3797e7b3ddc84cbb8dc4c6aef0e2
/
.
/
lib
/
src
/
common
/
web_element.dart
blob: 452f78dd8e98779cf7f446f2d0258ffd9b55180e [
file
]
/// Common interface for web element, containing only the element id.
abstract
class
WebElement
{
String
get
id
;
Map
<
String
,
String
>
toJson
()
=>
{
'ELEMENT'
:
id
};
}