mirror of
https://github.com/MontFerret/ferret.git
synced 2025-01-30 04:30:51 +02:00
90427cd537
* Added remote type reference resolver * Added support of XPath query selector * Added CDP e2e testss covering XPath integration * Added additional CDP e2e tests covering XPath integration * Added type check to QuerySelector casting function * Fixed XPath e2e tests * Fixed vuln issue * Added support of XPath selectors to http driver * Added e2e tests for XPAth
14 lines
392 B
Plaintext
14 lines
392 B
Plaintext
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, X("//*[@id='wait-class-content']"), "alert-success")
|
|
|
|
// with random timeout
|
|
CLICK(doc, "#wait-class-random-btn")
|
|
WAIT_CLASS(doc, X("//*[@id='wait-class-random-content']"), "alert-success", 10000)
|
|
|
|
RETURN NONE |