mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
7e6b3bf15d
* Added and implemented Focus and FocusBySelector methods * Added e2e tests * Updated CHANGELOG * Fixed linting errors
8 lines
156 B
Plaintext
8 lines
156 B
Plaintext
LET url = @dynamic + "/#/events"
|
|
LET page = DOCUMENT(url, true)
|
|
|
|
FOCUS(page, "#focus-input")
|
|
|
|
WAIT_CLASS(page, "#focus-content", "alert-success")
|
|
|
|
RETURN "" |