Skip to main content

Appium Server Plugins

Appium Plugins offer various ways to extend or modify Appium's behaviour. They are completely optional and are not needed for standard automation functionality, but you may find them to be useful for more specialised automation workflows.

These plugins are are currently supported by the Continuous Testing:

dc.setCapability("appiumPlugins", "Images");
dc.setCapability("appiumPlugins", "OCR");

Enabling plugins in Appium Test Execution:

Use the capability appiumPlugins and add the plugin name(s) to activated during Appium session.

dc.setCapability("appiumPlugins", <plugin-name>);
info

Value of appiumPlugins can be a String, or List of Strings (for more then 1 plugin)