Property
public struct Property<T>
Main holding property. Any supported view or object will have .spec property available
-
Contains checks on supported elements (like isVisible or hasSiblings, etc)
Declaration
Swift
public let check: Check<T>
-
If you are looking for something, find is your guy (You can find text, recurse through UIView structures, etc)
Declaration
Swift
public let find: Find<T>
-
Prepares supported elements (like prepare view controllers for testing, etc)
Declaration
Swift
public let prepare: Prepare<T>
-
Actions on supported elements (like tap on a button or execute a gesture recognizers targets)
Declaration
Swift
public let action: Action<T>