| Type | Name and description |
|---|---|
T |
waitFor(String waitPreset, Closure<T> block)Uses the wait preset from the configuration
with the given name to to wait for block to return a true value according to the Groovy Truth. |
T |
waitFor(Map params, String waitPreset, Closure<T> block) |
T |
waitFor(Closure<T> block)Uses the default wait from the configuration to
wait for block to return a true value according to the Groovy Truth. |
T |
waitFor(Map params, Closure<T> block) |
T |
waitFor(Double timeout, Closure<T> block)Invokes block every Configuration.getDefaultWaitRetryInterval seconds, until it returns
a true value according to the Groovy Truth, waiting at most timeout seconds. |
T |
waitFor(Map params, Double timeout, Closure<T> block) |
T |
waitFor(Double timeout, Double interval, Closure<T> block)Invokes block every interval seconds, until it returns
a true value according to the Groovy Truth, waiting at most timeout seconds. |
T |
waitFor(Map params, Double timeout, Double interval, Closure<T> block) |
Uses the wait preset from the configuration
with the given name to to wait for block to return a true value according to the Groovy Truth.
blockwaitPreset - the name of the wait preset in configuration to useblock - what is to be waited on to return a true-ish value Uses the default wait from the configuration to
wait for block to return a true value according to the Groovy Truth.
blockblock - what is to be waited on to return a true-ish value Invokes block every Configuration.getDefaultWaitRetryInterval seconds, until it returns
a true value according to the Groovy Truth, waiting at most timeout seconds.
blocktimeout - the number of seconds to wait for block to return (roughly)block - what is to be waited on to return a true-ish value Invokes block every interval seconds, until it returns
a true value according to the Groovy Truth, waiting at most timeout seconds.
blockinterval - the number of seconds to wait between invoking blocktimeout - the number of seconds to wait for block to return (roughly)block - what is to be waited on to return a true-ish valueGroovy API Documentation for Geb 0.11.0 - Licensed under the Apache License, Version 2.0 - http://www.gebish.org