Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Test:Ui Sandbox

ASecurity

Playwright selector patterns for sandbox agent chat — proven selectors for sessions, agents, messages, tool calls

302 stars
0 votes
0 copies
0 views
Added 9/20/2026
ai-agentstypescriptgoreactdockertestingdebuggingapifrontendbackend

Works with

cliapi

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add rossoctl/rossoctl --skill test:ui-sandbox --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Test:Ui Sandbox?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Test:Ui Sandbox
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rossoctl-test-ui-sandbox/badge)](https://www.skillsdirectory.com/skills/rossoctl-test-ui-sandbox)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: test:ui-sandbox
description: Playwright selector patterns for sandbox agent chat — proven selectors for sessions, agents, messages, tool calls
---

# Sandbox UI Test Patterns

Proven Playwright selectors and patterns for testing the Rossoctl sandbox agent chat UI.
Based on 20+ iterations of debugging on live HyperShift clusters.

## Agent Selection

```typescript
// Select an agent in the Sandboxes sidebar (proven pattern from sandbox-variants)
const agentEntry = page.locator('div[role="button"]').filter({
  hasText: agentName,
}).filter({
  hasText: /session/i,  // Agents show "N sessions" text
});
await expect(agentEntry.first()).toBeVisible({ timeout: 30000 });
await agentEntry.first().click();
```

## Chat Input

```typescript
// Message input (SandboxPage)
const input = page.locator('textarea[aria-label="Message input"]');
await input.fill('my message');
await input.press('Enter');  // Enter sends (not click Send button)

// Or via Send button
await page.getByRole('button', { name: /Send/i }).click();
```

## Agent Response Detection

The agent may respond with **text** (`.sandbox-markdown`) or **tool calls** (ToolCallStep divs).
Always check for both:

```typescript
// Wait for ANY agent output (text or tool calls)
const agentOutput = page.locator('.sandbox-markdown')
  .or(page.locator('text=/Tool Call:|Result:/i'));
await expect(agentOutput.first()).toBeVisible({ timeout: 180000 });

// Count each type
const mdCount = await page.locator('.sandbox-markdown').count();
const toolCount = await page.locator('text=/Tool Call:|Result:/i').count();
```

### .sandbox-markdown

Renders for assistant messages with text content (not tool calls):
```html
<div class="sandbox-markdown">
  <ReactMarkdown>response text here</ReactMarkdown>
</div>
```

### ToolCallStep

Renders for tool_call and tool_result events. Uses `<div>` with click handler, NOT `<details>`:
```html
<div style="border-left: 3px solid ...">
  <div style="font-weight: 600">▶ Tool Call: web_fetch</div>
</div>
```

Selector: `page.locator('text=/Tool Call:|Result:/i')`

## Session URL & Navigation

### Capture session URL from test 3 for reuse in tests 4-6:
```typescript
let sessionUrl: string | null = null;

// After sending message and getting response:
sessionUrl = page.url();
// URL format: /sandbox?session=<context_id>
```

### Navigate to session (avoiding Keycloak re-auth redirect):

**WRONG** — triggers full page load through Keycloak, redirects to `/`:
```typescript
await page.goto(sessionUrl); // Keycloak redirects to /
```

**RIGHT** — SPA routing via pushState:
```typescript
await page.goto('/');
await loginIfNeeded(page);
const sid = sessionUrl.match(/session=([a-f0-9]+)/)?.[1];
await page.evaluate((s) => {
  window.history.pushState({}, '', `/sandbox?session=${s}`);
  window.dispatchEvent(new PopStateEvent('popstate'));
}, sid);
// pushState triggers sync React re-render — no DOM indicator to await
    await page.waitForTimeout(5000);
```

## History Loading (toMessage conversion)

When a session reloads from history, the backend's paginated history API converts
agent messages into `kind: "data"` parts. The frontend `toMessage()` function
must distinguish tool calls from text:

- `kind: "data"` + `type: "tool_call"` → renders as ToolCallStep
- `kind: "data"` + `type: "tool_result"` → renders as ToolCallStep
- `kind: "data"` + `type: "llm_response"` → should render as .sandbox-markdown
- `kind: "text"` → always renders as .sandbox-markdown

## Known Issues

1. **rca-agent shows "0 sessions"** — sessions not tagged with agent name in metadata
2. **TOFU PermissionError** — agent Dockerfile needs `chmod g+w /app` for OCP arbitrary UID
3. **SSE rendering flaky** — `.sandbox-markdown` sometimes doesn't appear during streaming
   (tool calls render, but final text may not). Workaround: poll with retry.

## Test Structure for Serial Agent Tests

```typescript
test.describe('Agent Workflow', () => {
  test.describe.configure({ mode: 'serial' });
  test.setTimeout(300000);
  let sessionUrl: string | null = null;

  test.beforeAll(() => { /* cleanup agent */ });

  test('1 — deploy', async ({ page }) => { /* wizard + patch */ });
  test('2 — verify card', async ({ page }) => { /* kubectl exec httpx */ });
  test('3 — send message', async ({ page }) => {
    // ... send and wait for response ...
    sessionUrl = page.url();
  });
  test('4 — reload session', async ({ page }) => {
    // Login first, then SPA-navigate to sessionUrl
  });
});
```

Attribution

rossoctlrossoctl
View sourceMore from rossoctl →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Caveman

Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested.

1023331 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers prior coding-agent session context by running `catchup <agent> --since-compact`, which extracts a clean summary of a previous Codex, Claude Code, Antigravity, OpenCode, or Pi Agent session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", or asks to recover/summarize a previous session before continuing. Do NOT use for the current conversation, git history, or any non-agent log.

611 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →