mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
7 lines
196 B
Plaintext
7 lines
196 B
Plaintext
|
LET doc = DOCUMENT("http://getbootstrap.com/docs/4.1/components/collapse/", true)
|
||
|
LET el = ELEMENT(doc, "#collapseTwo")
|
||
|
|
||
|
CLICK(doc, "#headingTwo > h5 > button")
|
||
|
WAIT_CLASS(el, "show")
|
||
|
|
||
|
RETURN TRUE
|