@appium/universal-xml-plugin
v2.1.6
Published
Appium plugin for making XML source and XPath queries the same across iOS and Android
Downloads
11,054
Readme
@appium/universal-xml-plugin
Appium plugin for transforming platform-specific XML into a universal syntax
This plugin takes the XML page source retrieved using an iOS or Android driver, and changes various node and attribute names to use common terminology that can apply to both platforms.
Motivation
Having compatibility between iOS and Android XML sources can simplify creation of cross-platform tests.
Installation
appium plugin install universal-xmlUsage
Like all plugins, this plugin must be explicitly activated when launching the Appium server:
appium --use-plugins=universal-xmlOnce the plugin is running, it will intercept and transform the app source retrieved by the Get Page Source command, as well as element node/attribute names provided in Find Element-related commands.
API
Refer to the Appium documentation.
Examples
Node names
|iOS|Android|Transformed|
|-|-|-|
|XCUIElementTypeButton|android.widget.Button|Button|
|XCUIElementTypeAlert|android.widget.Toast|Alert|
|XCUIElementTypeSwitch|android.widget.Switch|SwitchInput|
See the mapping file for a full list of node name translations. Any names not specified are left as-is.
Attribute names
|iOS|Android|Transformed|
|-|-|-|
|name|content-desc|axId|
|label|text|text|
|visible|displayed|visible|
Note that this plugin also removes a few attributes from the transformed XML. See the mapping file for a full list of attribute name translations and removed attributes. Any names not specified are left as-is.
License
Apache-2.0
