xcode_configure_simulator_preferences
Automate batch configuration of iOS simulator preferences, including locale, language, timezone, appearance, and accessibility, using MCP Appium Server for streamlined mobile app testing.
Instructions
Configure simulator preferences in batch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
preferences | Yes | Preferences to configure | |
udid | Yes | The UDID of the simulator |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"preferences": {
"additionalProperties": false,
"description": "Preferences to configure",
"properties": {
"accessibility": {
"description": "Enable accessibility features",
"type": "boolean"
},
"appearance": {
"description": "UI appearance mode",
"enum": [
"light",
"dark"
],
"type": "string"
},
"language": {
"description": "Language setting (e.g., 'en')",
"type": "string"
},
"locale": {
"description": "Locale setting (e.g., 'en_US')",
"type": "string"
},
"timezone": {
"description": "Timezone setting (e.g., 'America/New_York')",
"type": "string"
}
},
"type": "object"
},
"udid": {
"description": "The UDID of the simulator",
"type": "string"
}
},
"required": [
"udid",
"preferences"
],
"type": "object"
}