Interface WaitUntilTestObjectState.WaitUntilEvaluator<T extends TestObject>

Type Parameters:
T - the concrete TestObject type.
Enclosing class:
WaitUntilTestObjectState

public static interface WaitUntilTestObjectState.WaitUntilEvaluator<T extends TestObject>
This interface exposes the evaluate method, which evaluates if an object in the AUT is currently in a specific state. This interface is the input parameter for the WaitUntilTestObjectState.waitUntil method.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    evaluate(T testObject)
    Evaluates whether this object is currently in a specific state.
  • Method Details

    • evaluate

      boolean evaluate(T testObject) throws GeneralLeanFtException
      Evaluates whether this object is currently in a specific state.
      Parameters:
      testObject - the object to evaluate.
      Returns:
      true if the object is in a specific state, otherwise false.
      Throws:
      GeneralLeanFtException - if error occurs during execution