GREYInteractionErrorCode
enum GREYInteractionErrorCode {}
Error codes for element interaction failures.
-
Element search has failed.
Declaration
Objective-C
kGREYInteractionElementNotFoundErrorCode = 0Swift
case elementNotFoundErrorCode = 0 -
Constraints failed for performing an interaction.
Declaration
Objective-C
kGREYInteractionConstraintsFailedErrorCodeSwift
case constraintsFailedErrorCode = 1 -
Action execution has failed.
Declaration
Objective-C
kGREYInteractionActionFailedErrorCodeSwift
case actionFailedErrorCode = 2 -
Assertion execution has failed.
Declaration
Objective-C
kGREYInteractionAssertionFailedErrorCodeSwift
case assertionFailedErrorCode = 3 -
Timeout reached before interaction could be performed.
Declaration
Objective-C
kGREYInteractionTimeoutErrorCodeSwift
case timeoutErrorCode = 4 -
Single element search found multiple elements.
Declaration
Objective-C
kGREYInteractionMultipleElementsMatchedErrorCodeSwift
case multipleElementsMatchedErrorCode = 5 -
Index provided for matching an element from multiple elements was over the number of elements found.
Declaration
Objective-C
kGREYInteractionMatchedElementIndexOutOfBoundsErrorCodeSwift
case matchedElementIndexOutOfBoundsErrorCode = 6
View on GitHub
GREYInteractionErrorCode Enum Reference