set_sim_appearance
Change the appearance mode of an iOS simulator to dark or light using its UUID. Simplify simulator customization for testing environments.
Instructions
Sets the appearance mode (dark/light) of an iOS simulator.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mode | Yes | The appearance mode to set (either "dark" or "light") | |
simulatorUuid | Yes | UUID of the simulator to use (obtained from list_simulators) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"mode": {
"description": "The appearance mode to set (either \"dark\" or \"light\")",
"enum": [
"dark",
"light"
],
"type": "string"
},
"simulatorUuid": {
"description": "UUID of the simulator to use (obtained from list_simulators)",
"type": "string"
}
},
"required": [
"simulatorUuid",
"mode"
],
"type": "object"
}