---
title: "ktm tests action-types"
description: "List available action types for test creation"
sidebarTitle: "action-types"
lastUpdated: "2026-09-23"
---

> **For AI agents:** the complete documentation index is at [llms.txt](/llms.txt). Append `.md` to any page URL for its markdown version.

{/* GENERATED FILE: do not edit by hand. Regenerate with: node scripts/generate.mjs */}

List available action types for test creation

## Usage

```bash
ktm tests action-types [flags]
```

## Examples

```bash
# List all action types
ktm tests action-types

# List ethernet-only action types
ktm tests action-types --kind ethernet

# List SIM action types as table
ktm tests action-types --kind sim -o table
```

## Flags

| Flag | Type | Default | Description |
| --- | --- | --- | --- |
| `--kind` | string |  | Filter by owner kind: ethernet, sim, smartphone, ownerless |

## Details

List the catalog of available action types (44 types: 15 ETHERNET, 22 SIM, 3 SMARTPHONE, 4 OWNERLESS) for creating tests.

Each action type has an owner_kind that determines what device it runs on:
  ETHERNET    — runs on a web agent (hostname)
  SIM         — runs on a SIM card (MSISDN)
  SMARTPHONE  — runs on a smartphone (UUID)
  OWNERLESS   — no device needed (control flow: JAVASCRIPT, WAIT, etc.)

Use --kind to filter by owner kind.

Use the output with 'tests template &lt;type&gt; [type...]' to generate a ready-to-customize test.

## Related

- [`ktm tests`](/cli/commands/tests)

<Note>
  Global flags (`--output`, `--debug`, `--host`, …) apply to every command. See the [command reference overview](/cli/commands/overview).
</Note>

## What's next?

<Columns cols={2}>
  <Card title="All commands" icon="terminal" href="/cli/commands/overview">
    Browse the full CLI reference.
  </Card>
  <Card title="Get started" icon="rocket" href="/cli/getting-started">
    Install the CLI and authenticate.
  </Card>
</Columns>
