mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-05 15:16:07 +02:00
12 lines
240 B
Plaintext
12 lines
240 B
Plaintext
LET url = @dynamic + "/#/events"
|
|
LET page = DOCUMENT(url, true)
|
|
|
|
FOCUS(page, "#focus-input")
|
|
|
|
WAIT_CLASS(page, "#focus-content", "alert-success")
|
|
|
|
BLUR(page, "#focus-input")
|
|
|
|
WAIT_NO_CLASS(page, "#focus-content", "alert-success")
|
|
|
|
RETURN "" |