configuration property
Use this method to configure Eyes based on a configuration object.
Syntax
Call syntax
Configuration* value; // give relevant initial value
eyes.configuration = value;
value = eyes.configuration
Declaration
(strong, nonatomic) Configuration *configuration
Type:Configuration*
Remarks
The typical sequence for configuring a test is:
- Create a Configuration object.
- Assign to the properties you want to set up, and call the various methods.
- Create an Eyes instance.
- Call the [Eyes configuration] method with the configuration object.
- Call the [Eyes openWithApplicationName] method to start the test session.
- Get the current configuration using [Eyes configuration] to a local variable.
- Make changes to the local configuration value.
- Assign the local configuration object to the Eyes instance using [Eyes configuration].