UNPKG
cabbie-async
Version:
latest (0.12.1)
0.12.1
0.12.0
0.11.8
0.10.7
0.10.6
0.10.3
0.10.2
0.10.1
0.10.0
0.9.1
0.9.0
0.8.2
0.8.1
0.6.0
0.5.3
0.5.2
0.5.1
0.5.0
0.4.0
0.3.0
0.2.4
0.2.3
An asynchronous webdriver client
github.com/ForbesLindesay/cabbie
ForbesLindesay/cabbie
cabbie-async
/
lib
/
alert.d.ts
9 lines
(8 loc)
•
235 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
BaseClass
from
'./base-class'
;
declare
class
Alert
extends
BaseClass
{
getText
():
Promise
<
string
>;
setText
(
text
:
string
):
Promise
<
void
>;
accept
():
Promise
<
void
>;
dismiss
():
Promise
<
void
>; }
export
default
Alert
;