LET url = @lab.cdn.dynamic + "?redirect=/events" LET doc = DOCUMENT(url, true) WAIT_ELEMENT(doc, "#page-events") // with fixed timeout CLICK(doc, "#wait-class-btn") WAIT_CLASS(doc, "#wait-class-content", "alert-success") // with random timeout CLICK(doc, "#wait-class-random-btn") WAIT_CLASS(doc, "#wait-class-random-content", "alert-success", 10000) RETURN NONE