mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
f39face8bf
* Added ability to use ClickBySelector with an element * Fixes * Increased timeout time
10 lines
229 B
Plaintext
10 lines
229 B
Plaintext
LET url = "http://192.168.1.170:8080/#/events"
|
|
LET page = DOCUMENT(url, true)
|
|
|
|
LET div = ELEMENT(page, "#wait-class-random")
|
|
|
|
CLICK(div, "button")
|
|
|
|
WAIT_CLASS(page, "#wait-class-random-content", "alert-success", 10000)
|
|
|
|
RETURN "" |