1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-02-19 19:44:32 +02:00
ferret/examples/wait_class_doc.fql
Tim Voronov e64ad4ec0e
Feature/#33 wait class function ()
*  Lib cleanup. Added WAIT_CLASS and WAIT_CLASS_ALL functions

*  Fixed attr update

*  HTMLElement.WaitForClass

*  Updated HTMLDocument.WaitForClass
2018-10-06 22:33:39 -04:00

6 lines
175 B
Plaintext

LET doc = DOCUMENT("http://getbootstrap.com/docs/4.1/components/collapse/", true)
CLICK(doc, "#headingTwo > h5 > button")
WAIT_CLASS(doc, "#collapseTwo", "show")
RETURN TRUE