framework_stabilizers/framework_stabilizers
library
Classes
-
FrameworkStabilizers
-
Provides a set of helper functions for frameworks to register and deregister
stabilizing functions. These functions will be called by tests, whenever
they require the page to be stable before they can perform the next action.
Typedefs
-
FrameworkStabilizer
= void Function(IsStableCallback callback)
-
Function provided by a framework to register an IsStableCallback that is
invoked by the framework when it reaches a stable state.
-
IsStableCallback
= void Function(bool didWork, String name)
-
Function invoked by a framework when it has reached a stable state. The
didWork
parameter indicates, if the framework did any work between
callback registration and callback invocation.