Deep dive into step-by-step execution data with the Detail Panel.
The Detail Panel is the right sidebar (35% of screen) in the Trace Debugger that shows comprehensive information about the currently selected step.
It provides everything you need to understand:
The Detail Panel is organized into collapsible sections for easy navigation.
Shows at the very top:
The specific goal for this step:
Type 'laptop' in the search box
This is NOT the overall run goal (e.g., "Buy a laptop from Amazon"), but rather the immediate objective for this individual step.
One-line description of what happened:
✓ Typed "laptop" into element #168 (search input)
Or if it failed:
✗ Failed to click element #42 (button not found)
Shows the webpage state before and after the action:
The URL before the action executed:
https://www.amazon.com/s?k=laptop&crid=62G9T2HDMCVW&sprefix=laptop%2Caps%2C161&ref=nb_sb_noss_1
The URL after the action executed:
https://www.amazon.com/HP-Micro-edge-Microsoft-14-dq0040nr-Snowflake/dp/B0947BJ67M/ref=sr_1_2?crid=62G9T2HDMCVW&dib=eyJ2IjoiMSJ9.LEInAfCt99nkoUL7kiolxZc1GWTv-Uuf0fHc9WyNcZELx8hDbLmrC5pXZM_uv-KmmcgFC0q_WA1KsoVNkMExCoSVcfKWCZ0KWlHznoxKuCt8bP9LtP7Rm_AYwcbyadcJUl2pxOQcTqa1dz7p7b64U7GO7SpCnPfPz9c_RoLqsH-vuoh9xfytRZp0Rz8-9y8vZsbzpfNhwaQeaw4tpCINz7UtWeTfpQDo2r1GtnkUQJA.7zf7QN5TeBt6PLxm-vfLuvL1ONUVZnMamF6Z8BBhHVc&dib_tag=se&keywords=laptop&qid=1767480379&sprefix=laptop%2Caps%2C161&sr=8-2
What to look for:
Shows the raw output from the language model that decided what action to take.
The exact text the LLM generated:
TYPE(168, "laptop")
This is the instruction the agent follows. Format varies by agent type:
ACTION(element_id, parameters)SHA-256 hash of the response for caching:
sha256:2428758f8403d6f4c489184402e04a2e072e301ce6d43a6288fb9737c02bfe04
Why it matters:
LLM token consumption for this step:
Prompt Tokens: 2,671
Completion Tokens: 13
Total Tokens: 2,684
What to look for:
Shows exactly what happened when the action was executed.
The type of action:
click - Clicked an elementtype - Typed text into an inputpress - Pressed a keyboard keyscroll - Scrolled the pagenavigate - Navigated to a URLInformation about the target element (for click/type actions):
Element ID: 168
Element Type: input
Bounding Box: { x: 280, y: 120, width: 450, height: 40 }
Bounding box shows the exact position and size of the element on the page.
Specific details for the action:
For type actions:
Text: "laptop"
For click actions:
Click Coordinates: (505, 140)
For press actions:
Key: "Enter"
For scroll actions:
Direction: down
Amount: 500px
What happened when the action executed:
Success outcomes:
dom_updated - Page DOM changed (expected)navigation - Page navigated to new URLno_change - Action completed but page didn't changeFailure outcomes:
element_not_found - Target element doesn't existelement_not_visible - Element exists but isn't visibletimeout - Action took too longerror - JavaScript error occurredHow long the action took to execute:
Duration: 10,370 ms (10.37 seconds)
What's normal:
click: 100-2000mstype: 500-5000ms (depends on text length)navigate: 1000-10000ms (depends on page load)scroll: 100-500msWhat's slow:
click: >5000ms (page loading issue)type: >10000ms (slow input handling)navigate: >30000ms (network issues)If the action failed, shows the error:
Error: Element #42 not found in DOM. The element may have been removed
or the page structure changed.
Shows whether the action achieved its intended goal.
Overall verification outcome:
Specific checks that were performed:
Common signals:
url_changed:
✓ URL changed (expected for navigation)
✗ URL did not change (expected change)
dom_mutation:
✓ DOM was modified (expected for interactions)
✗ No DOM changes detected
element_visible:
✓ Target element is visible
✗ Element is hidden or removed
error_detected:
✗ JavaScript error occurred on page
✓ No errors detected
timeout:
✗ Operation timed out
✓ Completed within timeout
Some agents may provide custom verification signals:
shopping_cart_updated: true
item_count_increased: true
price_displayed: true
Additional performance data:
LLM Call: 2,450 ms
Action Execution: 10,370 ms
Verification: 1,200 ms
Total: 14,020 ms
Requests: 8
Data Transferred: 1.2 MB
Heap Size: 45 MB
DOM Nodes: 1,247
The status badge at the top tells you the overall outcome:
Both action execution AND verification passed:
✓ Action: Succeeded
✓ Verification: Passed
Example:
Action succeeded BUT verification failed:
✓ Action: Succeeded
✗ Verification: Failed
Example:
Common causes:
Action execution failed:
✗ Action: Failed
- Verification: Not performed (action failed)
Example:
Common causes:
Step 3: Type 'laptop' in search box
✓ Success
URLs:
Pre: https://www.amazon.com/
Post: https://www.amazon.com/ (unchanged)
LLM Response:
TYPE(168, "laptop")
Tokens: 1,257
Execution:
Action: type
Element: #168 (input)
Text: "laptop"
Outcome: dom_updated
Duration: 10,370 ms
Verification:
✓ Passed
Signals:
✓ dom_mutation: true
✓ element_visible: true
✓ error_detected: false
What this tells you:
Step 7: Click "Add to Cart" button
✗ Failed
URLs:
Pre: https://www.amazon.com/dp/B08N5WRWNW
Post: https://www.amazon.com/dp/B08N5WRWNW (unchanged)
LLM Response:
CLICK(42)
Tokens: 1,445
Execution:
Action: click
Element: #42 (button)
Outcome: element_not_found
Duration: 5,000 ms (timeout)
Error: Element #42 not found in DOM
Verification:
- Not performed (action failed)
What this tells you:
Next steps:
Step 5: Click "Search" button
⚠ Partial
URLs:
Pre: https://www.amazon.com/
Post: https://www.amazon.com/ (unchanged)
LLM Response:
CLICK(89)
Tokens: 1,123
Execution:
✓ Action: click
Element: #89 (button)
Outcome: dom_updated
Duration: 1,250 ms
Verification:
✗ Failed
Signals:
✗ url_changed: false (expected true)
✓ dom_mutation: true
✓ element_visible: true
What this tells you:
Possible issues:
Symptoms:
element_not_foundCheck:
Solutions:
Symptoms:
Check:
Solutions:
Symptoms:
Check:
Solutions: