help-center-ui-test
Help Center UI Test
Performs a systematic browser-based UI review of the Help Center using Chrome automation (Claude in Chrome extension).
Prerequisites
- The Claude in Chrome browser extension must be installed and connected. Run
/chromein Claude Code if not connected. - The user must be logged into WordPress.com in Chrome.
Setup
- Use
ToolSearchto load Chrome tools:select:mcp__claude-in-chrome__tabs_context_mcp. - Call
mcp__claude-in-chrome__tabs_context_mcpto get current tabs. - Create a new tab with
mcp__claude-in-chrome__tabs_create_mcp.
Error Monitoring
After opening the Help Center on each surface, and after key interactions, check for errors:
- Console errors: Call
mcp__claude-in-chrome__read_console_messageswithpattern: "(error|Error|ERROR)"to capture JS errors. - Network errors: Call
mcp__claude-in-chrome__read_network_requestsand check for any requests with HTTP status >= 400.
Check for errors at these points:
- After opening the Help Center on each surface.
- After performing a search.
- After loading an article.
- After receiving an AI chat response.
- After initiating a support handoff.
- At the end of each surface's tests (final error sweep).
Log any errors found as issues in the test results, categorized as "Console Error" or "Network Error".
Test Surfaces
Test the Help Center on both surfaces, one at a time:
- Calypso Dashboard:
https://my.wordpress.com/sites - WP Admin:
https://en.support.wordpress.com/wp-admin/ - Editor:
https://en.support.wordpress.com/wp-admin/post-new.php
For each surface:
- Navigate to the URL.
- Use
mcp__claude-in-chrome__findto locate the?help icon. If not found, wait 3 seconds withmcp__claude-in-chrome__computer(action: wait) and retry. - Click the
?icon to open the Help Center. - Use
mcp__claude-in-chrome__findto confirm the search bar or home screen content has appeared. If not found, wait 3 seconds and retry.
Test Checklist
For each surface, verify all of the following:
1. Home Screen
- Layout renders correctly (no overlapping, no broken spacing).
- Recommended/contextual guides are shown (WP Admin should show WP Admin-specific guides).
- Recent conversation card appears if there is conversation history.
- Search bar is visible and functional.
2. Search
- Type a real query (e.g., "domain") and use
mcp__claude-in-chrome__findto confirm search results have appeared. If not found, wait 3 seconds and retry. Verify results show titles and descriptions. - Clear the search and type gibberish (e.g., "xyzqwfoobar123") — use
mcp__claude-in-chrome__findto confirm the empty state has appeared. Verify a fallback action appears (e.g., "Ask AI assistant" button).
3. Article Rendering
- Open a guide/article from the home screen or search results.
- Use
mcp__claude-in-chrome__findto confirm the article heading has rendered. If not found, wait 3 seconds and retry. - Check that headings, images, videos, links, lists, collapsible sections, and embedded UI cards render correctly.
4. Support Assistant (AI Chat)
- Open the AI chat via "Get help" or similar entry point.
- Verify the greeting message renders correctly.
- Send a question (e.g., "How do I change my site title?").
- Use
mcp__claude-in-chrome__findto confirm the AI response has appeared. If not found, wait 5 seconds and retry (AI responses may take longer). - Verify the AI response renders correctly: text formatting, links, feedback icons (thumbs up, thumbs down, copy).
- Expand the Sources dropdown and verify it shows relevant documentation links.
5. Live Support Handoff
- In the AI chat, type "Talk with a human".
- Verify the AI offers a "Talk with a human" button or similar handoff mechanism.
- If prompted about an ongoing conversation, choose "No, connect me with someone new".
- Verify the transition: header changes to "Support Team", a "CHAT WITH SUPPORT TEAM STARTED" divider appears, the input field gains an attachment button.
6. Navigation
- Back button: navigates to the previous screen within the Help Center.
- Close (X): closes the Help Center panel.
- Minimize/Maximize: Help Center can be minimized and restored.
- Three-dot menu: shows options (Minimize, New chat, Support history, Turn off sound notifications).
7. Support History
- Open Support history from the three-dot menu.
- Verify past conversations are listed.
- Click a conversation and verify it opens the correct one (not a different conversation).
Viewport Testing
After completing the full test checklist at desktop size on each surface, test responsive layouts at additional viewports.
Viewport Presets
| Name | Width | Height |
|---|---|---|
| Desktop | 1280 | 800 |
| Mobile | 375 | 812 |
Procedure
For each surface, after the desktop checklist is complete:
- Use
mcp__claude-in-chrome__resize_windowto switch to Mobile (375x812). - Open the Help Center and verify:
- Home Screen layout (no overlapping, no broken spacing, no horizontal overflow).
- Search results layout.
- Help Center panel sizing (doesn't overflow viewport).
- Use
mcp__claude-in-chrome__resize_windowto restore Desktop (1280x800) before moving to the next surface.
Test Results Format
Every test run must produce a structured summary using this format:
## Test Results Summary
### Surface: [Calypso Dashboard / WP Admin]
| # | Check | Viewport | Status | Issue | Evidence |
|---|-------|----------|--------|-------|----------|
| 1 | Home Screen — layout | Desktop | PASS/FAIL | Description | screenshot.png |
| 2 | Home Screen — guides | Desktop | PASS/FAIL | Description | |
| ... | ... | ... | ... | ... | ... |
### Console & Network Errors
| Surface | Type | Message/URL | HTTP Status |
|---------|------|-------------|-------------|
| Calypso | Network | /wpcom/v2/help/search | 500 |
| WP Admin | Console | TypeError: ... | — |
### Overall: X passed, Y failed, Z errors
Only FAIL rows and errors should be filed as Linear issues.
Taking Evidence
For every issue found during testing, record a GIF using mcp__claude-in-chrome__gif_creator:
- Call
gif_creatorwithaction: start_recordingon the Help Center tab. - Take a screenshot immediately after to capture the initial state as the first frame.
- Perform the actions that demonstrate the issue (click, scroll, type, etc.).
- Take a screenshot immediately before stopping to capture the final state.
- Call
gif_creatorwithaction: stop_recording.
Name GIFs descriptively (e.g., "search-clear-button-bug.gif"). For static visual issues, a single-frame GIF (start → screenshot → stop) is sufficient.
Reporting Issues
After completing all tests, if issues were found:
- Present a summary of all issues to the user.
- Ask the user if they would like to:
- File Linear issues for the bugs found.
- Attempt to fix the issues directly in the codebase.
- Both (fix and file).
- Default the Linear project to "Help Center Polish and Maintenance". Ask the user to confirm or pick a different one.
- Use
ToolSearchto load Linear tools:+linear save issue. - For each issue, create a Linear issue with
mcp__linear-server__save_issueincluding:-
Title: Clear, concise description of the bug.
-
Description (Markdown) — use this template:
## Bug Report ### Steps to Reproduce 1. ... ### Expected Behavior ... ### Actual Behavior ... ### Surface - [X] Calypso Dashboard - [ ] WP Admin -
Team: Ask user or default to "Dotcom Support Infrastructure" (DOTSUP).
-
Project: The project the user specified.
-
Fixing issues
If the user wants to attempt fixes:
- Create a new branch named after the Linear issue ID (e.g.,
git checkout -b DOTSUP-448). - Investigate the root cause and implement a fix.
- After fixing, ask the user if they want to commit and create a PR.
Attaching evidence to Linear issues
After creating each Linear issue, attach the GIF to the description via drag-and-drop. GIF recordings are scoped to the tab group, so they can be exported directly onto the Linear tab.
-
Navigate to the Linear issue in a Chrome tab (same tab group as the Help Center tab):
https://linear.app/a8c/issue/<ISSUE-ID>Use
mcp__claude-in-chrome__findto confirm the issue description is visible. If not found, wait 3 seconds and retry. -
Export the GIF with
mcp__claude-in-chrome__gif_creatorusingaction: export, settingtabIdto the Linear tab andcoordinateto a point inside the issue description area. The GIF will be embedded in the description (exact placement within the description may vary). -
Verify: Take a screenshot of the Linear tab to confirm the image was embedded.
Tips
- Use
mcp__claude-in-chrome__read_pagewithfilter: interactiveto find clickable elements. - Use
mcp__claude-in-chrome__findfor natural language element search (e.g., "Help Center close button"). - Use
mcp__claude-in-chrome__computerwithaction: left_clickandrefparameter to click elements by reference ID. - Use
mcp__claude-in-chrome__findto confirm elements have appeared after actions instead of fixed-delay sleeps. If an element isn't found, wait 3 seconds withmcp__claude-in-chrome__computer(action: wait,duration: 3) and retry up to 3 times. - If the Help Center closes unexpectedly, click the
?icon again to reopen it.