> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# autify/mobile

Runs a test plan to run automated E2E test scenarios on Autify For Mobile. Make sure to set your personal access token in the environment variable `AUTIFY_FOR_MOBILE_API_TOKEN` in your project. Click `Settings` on the left menu -> click the `Personal Access Token` on the sub menu in https://mobile-app.autify.com/ and you can get the token.


## Commands

### run_test_plan

Runs a test plan on Autify For Mobile.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `build_id` | string |  | Build ID that you want to run test against |
| `response_file_path` | string | response-mobile-run-test-plan.txt | File path that keeps the response from the API |
| `test_plan_api_base_url` | string | https://mobile-app.autify.com/api/v1/test_plans/ |  |
| `test_plan_id` | string |  | Test Plan ID that you want to run |

## Examples

### example

Runs a test plan on Autify For Mobile.


```yaml
version: '2.1'
orbs:
  autify-for-mobile: autify/mobile@1.2.3
workflows:
  use-my-orb:
    jobs:
      - autify-for-mobile/run_test_plan:
          build_id: 4d5E6f7g
          test_plan_id: 1a2B3c
```