Skip to content

Configure Executable Examples

Each section provides one runnable baseline call, expected response shape, and one failure example with a concrete fix. Use these as copy/paste starters and then adjust for your page or workflow.

{
"tool": "configure",
"arguments": {
"what": "store"
}
}
ParameterTypeDescription
whatstringMode name to execute.
tab_idnumberOptional target browser tab.
telemetry_modestringOptional telemetry verbosity: off, auto, full.
{
"tool": "configure",
"arguments": {
"what": "store",
"key": "project.current",
"data": {
"value": "checkout-redesign"
}
}
}
{
"what": "store",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "store"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"key": "project.current",
"data": {
"value": "checkout-redesign"
}
}
}

Fix: Use a valid configure mode value, e.g. store.

{
"tool": "configure",
"arguments": {
"what": "load",
"key": "project.current"
}
}
{
"what": "load",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "load"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"key": "project.current"
}
}

Fix: Use a valid configure mode value, e.g. load.

{
"tool": "configure",
"arguments": {
"what": "noise_rule",
"noise_action": "add",
"category": "console",
"message_regex": "ResizeObserver loop limit exceeded"
}
}
{
"what": "noise_rule",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "noise_rule"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"noise_action": "add",
"category": "console",
"message_regex": "ResizeObserver loop limit exceeded"
}
}

Fix: Use a valid configure mode value, e.g. noise_rule.

{
"tool": "configure",
"arguments": {
"what": "clear"
}
}
{
"what": "clear",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "clear"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. clear.

{
"tool": "configure",
"arguments": {
"what": "health"
}
}
{
"what": "health",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "health"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. health.

{
"tool": "configure",
"arguments": {
"what": "tutorial"
}
}
{
"what": "tutorial",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "tutorial"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. tutorial.

{
"tool": "configure",
"arguments": {
"what": "examples"
}
}
{
"what": "examples",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "examples"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. examples.

{
"tool": "configure",
"arguments": {
"what": "streaming"
}
}
{
"what": "streaming",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "streaming"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. streaming.

{
"tool": "configure",
"arguments": {
"what": "test_boundary_start"
}
}
{
"what": "test_boundary_start",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "test_boundary_start"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. test_boundary_start.

{
"tool": "configure",
"arguments": {
"what": "test_boundary_end"
}
}
{
"what": "test_boundary_end",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "test_boundary_end"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. test_boundary_end.

{
"tool": "configure",
"arguments": {
"what": "event_recording_start"
}
}
{
"what": "event_recording_start",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "event_recording_start"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. event_recording_start.

{
"tool": "configure",
"arguments": {
"what": "event_recording_stop"
}
}
{
"what": "event_recording_stop",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "event_recording_stop"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. event_recording_stop.

{
"tool": "configure",
"arguments": {
"what": "playback",
"recording_id": "rec_123"
}
}
{
"what": "playback",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "playback"
}
}
{
"tool": "configure",
"arguments": {
"what": "playback",
"recording_id": 123
}
}

Fix: Use recording_id as a string like rec_123.

{
"tool": "configure",
"arguments": {
"what": "log_diff",
"original_id": "rec_123",
"replay_id": "rec_456"
}
}
{
"what": "log_diff",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "log_diff"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"original_id": "rec_123",
"replay_id": "rec_456"
}
}

Fix: Use a valid configure mode value, e.g. log_diff.

{
"tool": "configure",
"arguments": {
"what": "telemetry"
}
}
{
"what": "telemetry",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "telemetry"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. telemetry.

{
"tool": "configure",
"arguments": {
"what": "describe_capabilities"
}
}
{
"what": "describe_capabilities",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "describe_capabilities"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. describe_capabilities.

{
"tool": "configure",
"arguments": {
"what": "diff_sessions"
}
}
{
"what": "diff_sessions",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "diff_sessions"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. diff_sessions.

{
"tool": "configure",
"arguments": {
"what": "audit_log"
}
}
{
"what": "audit_log",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "audit_log"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. audit_log.

{
"tool": "configure",
"arguments": {
"what": "restart"
}
}
{
"what": "restart",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "restart"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. restart.

{
"tool": "configure",
"arguments": {
"what": "save_sequence",
"name": "checkout-smoke",
"steps": [
{
"what": "navigate",
"url": "https://example.com"
},
{
"what": "click",
"selector": "text=Checkout"
}
]
}
}
{
"what": "save_sequence",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "save_sequence"
}
}
{
"tool": "configure",
"arguments": {
"what": "save_sequence",
"name": "checkout-smoke",
"steps": "navigate,click"
}
}

Fix: Use steps as an array of action objects.

{
"tool": "configure",
"arguments": {
"what": "get_sequence",
"name": "checkout-smoke"
}
}
{
"what": "get_sequence",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "get_sequence"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"name": "checkout-smoke"
}
}

Fix: Use a valid configure mode value, e.g. get_sequence.

{
"tool": "configure",
"arguments": {
"what": "list_sequences"
}
}
{
"what": "list_sequences",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "list_sequences"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. list_sequences.

{
"tool": "configure",
"arguments": {
"what": "delete_sequence",
"name": "checkout-smoke"
}
}
{
"what": "delete_sequence",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "delete_sequence"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"name": "checkout-smoke"
}
}

Fix: Use a valid configure mode value, e.g. delete_sequence.

{
"tool": "configure",
"arguments": {
"what": "replay_sequence",
"name": "checkout-smoke"
}
}
{
"what": "replay_sequence",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "replay_sequence"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"name": "checkout-smoke"
}
}

Fix: Use a valid configure mode value, e.g. replay_sequence.

{
"tool": "configure",
"arguments": {
"what": "doctor"
}
}
{
"what": "doctor",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "doctor"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode"
}
}

Fix: Use a valid configure mode value, e.g. doctor.

{
"tool": "configure",
"arguments": {
"what": "security_mode",
"mode": "normal"
}
}
{
"what": "security_mode",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "security_mode"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"mode": "normal"
}
}

Fix: Use a valid configure mode value, e.g. security_mode.

{
"tool": "configure",
"arguments": {
"what": "network_recording",
"operation": "start",
"domain": "example.com"
}
}
{
"what": "network_recording",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "network_recording"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"operation": "start",
"domain": "example.com"
}
}

Fix: Use a valid configure mode value, e.g. network_recording.

{
"tool": "configure",
"arguments": {
"what": "action_jitter",
"action_jitter_ms": 120
}
}
{
"what": "action_jitter",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "action_jitter"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"action_jitter_ms": 120
}
}

Fix: Use a valid configure mode value, e.g. action_jitter.

{
"tool": "configure",
"arguments": {
"what": "report_issue",
"operation": "draft",
"title": "Intermittent checkout timeout"
}
}
{
"what": "report_issue",
"ok": true,
"result": {
"summary": "Configuration updated",
"mode": "report_issue"
}
}
{
"tool": "configure",
"arguments": {
"what": "not_a_real_mode",
"operation": "draft",
"title": "Intermittent checkout timeout"
}
}

Fix: Use a valid configure mode value, e.g. report_issue.