Appium Configuration ¶
The following configuration activates Appium. Activating the Appium
configuration will disable Selendroid, which is started by default when using intaQt. Additional app-specific settings, including those that expose Appium Server settings may be configured in the AppTest block.
Important! If Appium is being started on the intaQt Phone Service, an additional Appium
configuration must be defined separately in the intaQt Phone Service configuration file. The Appium block in the intaQt Phone Service configuration must define the isActive
parameter and, optionally, the libraryPath
parameter.
Syntax
1 2 3 4 | Appium { isActive = <Boolean> libraryPath = <String> } |
Parameters
-
isActive -
true
enables the Appium plugin and disables Selendroidfalse
otherwise
-
libraryPath (Optional) - Path to the Appium library
- By default, this will point to the Appium library created by the QiTASC Cockpit
Example
1 2 3 4 | Appium { isActive = true libraryPath = "../../appium" } |