xcode_push_notification
Send simulated push notifications to iOS apps in specified simulators by providing UDID, bundle ID, and payload file path for testing automation purposes.
Instructions
Push a notification to a simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bundleId | Yes | Bundle identifier of the app | |
payload | Yes | Path to notification payload file | |
udid | Yes | The UDID of the simulator |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"bundleId": {
"description": "Bundle identifier of the app",
"type": "string"
},
"payload": {
"description": "Path to notification payload file",
"type": "string"
},
"udid": {
"description": "The UDID of the simulator",
"type": "string"
}
},
"required": [
"udid",
"bundleId",
"payload"
],
"type": "object"
}