ComponentBench / tasks /v1 /download_trigger.yaml
TianchenGuan's picture
Initial ComponentBench data release: tasks v1+v2, cleaned human traces, difficulty audit, ontology metadata
360df42 verified
- id: download_trigger-antd-T01
name: Download invoice PDF from primary button
canonical_type: download_trigger
implementation_source: antd
implementation_variant: button_primary
implementation_component: 'AntD: Button (type=primary, href) rendered as <a download> (compose)'
task_template: activate
secondary_template: null
browsergym_goal: 'Download the invoice PDF for Invoice #1042 by clicking the "Download invoice PDF" button. The task will
finish automatically when done.'
ui_copy: 'Invoice #1042 — Use the button below to download the invoice PDF.'
setup_description: |-
Layout: isolated_card centered on the page.
The card is titled "Invoice #1042" and shows a short summary (amount, date).
Primary action area contains a large AntD primary Button labeled "Download invoice PDF" with a download icon; it is implemented as an anchor (<a>) with an href to a same-origin blob URL and a download attribute of "invoice-1042.pdf".
A secondary default Button labeled "Preview" sits to the right as a distractor (opens an inline preview panel but does not download).
Initial state text below the buttons reads "Last download: never".
When the correct button is clicked, a toast appears: "Download started: invoice-1042.pdf".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 1
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 1
disambiguation_load: 1
justification: Single large primary button with clear label; no overlays or competing download controls. Feedback is a
simple toast confirming the filename.
success_trigger:
human_readable:
- A download is initiated for file_id=invoice_1042_pdf with suggested filename "invoice-1042.pdf".
- No confirmation step is required.
- The correct download trigger on the card is the one that must be clicked (single instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: invoice_1042_pdf
filename: invoice-1042.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Preview" (opens preview but does not initiate a download).
- Any download event for a different file_id or filename.
- Opening/closing any UI without initiating the download.
expected_interaction_path: Click the "Download invoice PDF" button observe toast "Download started".
- id: download_trigger-antd-T02
name: Download monthly statement CSV via link-style button
canonical_type: download_trigger
implementation_source: antd
implementation_variant: button_link
implementation_component: 'AntD: Button (type=link, href) rendered as <a download> (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the January 2026 account statement CSV by clicking the "Download CSV" link. The task will finish
automatically when done.
ui_copy: Account statement (January 2026). Download CSV
setup_description: |-
Layout: isolated_card centered on the page.
The card header reads "Account statement — January 2026".
In the body, there is an AntD link-style Button labeled "Download CSV" (blue link styling) implemented as an <a> element with a download attribute "statement-2026-01.csv".
A nearby plain text link "View online" (distractor) navigates to a preview page but does not download.
Initial status pill shows "Not downloaded".
On successful download trigger, the status pill updates to "Download started" and a toast includes the filename.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: The target is a smaller link-style control, but it is clearly labeled and unique on the card. No overlay
layers and immediate textual feedback.
success_trigger:
human_readable:
- A download is initiated for file_id=statement_2026_01_csv with suggested filename "statement-2026-01.csv".
- No confirmation step is required.
- Single download trigger instance on the page.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: statement_2026_01_csv
filename: statement-2026-01.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "View online" instead of downloading.
- Any download event for a different file_id/filename.
- Right-click context menu actions that do not initiate a download event (if applicable).
expected_interaction_path: Click "Download CSV" link button observe status pill/toast update.
- id: download_trigger-antd-T03
name: Download welcome packet from a table cell
canonical_type: download_trigger
implementation_source: antd
implementation_variant: table_cell_link
implementation_component: 'AntD: Table + Typography.Link (<a download>) in a cell (compose)'
task_template: table_operation
secondary_template: null
browsergym_goal: In the attachments table, download the "Welcome packet" PDF by clicking its download link. The task will
finish automatically when done.
ui_copy: Attachments table Click a download link to download the file.
setup_description: |-
Layout: table_cell scene centered on the page.
A small AntD Table with columns: "Document", "Type", "Download".
There is exactly one row:
- Document: "Welcome packet"
- Type: "PDF"
- Download: a blue text link labeled "Download" implemented as <a download="welcome-packet.pdf">.
Above the table there is a disabled Search input and a "Refresh" button (distractors, not required).
When the download link is clicked, a toast appears: "Download started: welcome-packet.pdf".
scene_context:
theme: light
spacing: comfortable
layout: table_cell
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: easy
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Target is a small in-table link but there is only one row, so choice interference is minimal. Clear column
labeling and immediate toast feedback.
success_trigger:
human_readable:
- A download is initiated for file_id=welcome_packet_pdf with suggested filename "welcome-packet.pdf".
- No confirmation step is required.
- Only one download link exists in the table (single instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: welcome_packet_pdf
filename: welcome-packet.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Refresh" or interacting with the disabled Search field.
- Any download event for a different file_id/filename.
- Sorting/filtering the table without initiating the download.
expected_interaction_path: Locate the "Welcome packet" row click the "Download" link in the Download column.
- id: download_trigger-antd-T04
name: Download brand logo PNG from form section
canonical_type: download_trigger
implementation_source: antd
implementation_variant: text_link_inline
implementation_component: 'AntD: Typography.Link (<a download>) inside Form section (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the brand logo PNG by clicking the "Download logo" link in the Brand assets section. The task
will finish automatically when done.
ui_copy: Brand assets Download logo
setup_description: |-
Layout: form_section centered on the page.
A settings-like form shows several labeled fields (Company name, Website, Support email) which are pre-filled and not required for the task.
A subsection titled "Brand assets" contains a small preview of the logo (thumbnail) and a single text link labeled "Download logo".
The "Download logo" link is implemented as <a download="brand-logo.png"> pointing to a same-origin blob URL.
A secondary link "Guidelines (opens in new tab)" sits below as a distractor.
On click, a toast appears confirming: "Download started: brand-logo.png".
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: easy
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Single clearly labeled link in a realistic form section. Some surrounding form fields add light clutter
but do not require interaction.
success_trigger:
human_readable:
- A download is initiated for file_id=brand_logo_png with suggested filename "brand-logo.png".
- No confirmation step is required.
- Only one download trigger in the Brand assets section.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: brand_logo_png
filename: brand-logo.png
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Guidelines" (opens a new tab) instead of downloading.
- Any download event for a different file_id/filename.
- Editing form fields without initiating the download.
expected_interaction_path: Find the "Brand assets" section click "Download logo".
- id: download_trigger-antd-T05
name: Export transactions using a download dropdown
canonical_type: download_trigger
implementation_source: antd
implementation_variant: dropdown_menu
implementation_component: 'AntD: Dropdown + Button + Menu.Item (compose download options)'
task_template: open_and_select
secondary_template: null
browsergym_goal: Export the January 2026 transactions as a CSV by opening the "Download" menu and selecting "CSV". The task
will finish automatically when done.
ui_copy: Export transactions Use the Download menu to choose a format.
setup_description: |-
Layout: isolated_card centered on the page.
Card title: "Export transactions (January 2026)".
Primary control is an AntD Button labeled "Download" with a down-caret; it opens an AntD Dropdown menu.
The Dropdown menu contains three items with format labels: "CSV", "PDF", and "JSON".
Selecting an item immediately initiates a download for that format (no extra Apply step).
A disabled menu item "Email me instead" appears at the bottom as a distractor.
Initial state shows "No export started"; after selecting CSV, a toast shows "Download started: transactions-jan-2026.csv".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Requires opening a dropdown overlay and selecting the correct item among several similar options. Clear
labels reduce ambiguity, but there are multiple interactables and one overlay layer.
success_trigger:
human_readable:
- A download is initiated for file_id=transactions_jan_2026_csv with suggested filename "transactions-jan-2026.csv".
- The download must be triggered via the CSV menu item (not PDF/JSON).
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: transactions_jan_2026_csv
filename: transactions-jan-2026.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting "PDF" or "JSON" (downloads the wrong file).
- Opening the dropdown but not selecting any format.
- Clicking the disabled "Email me instead" item.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download" dropdown opens click "CSV" item.
- id: download_trigger-antd-T06
name: Confirm sensitive audit log download
canonical_type: download_trigger
implementation_source: antd
implementation_variant: popconfirm
implementation_component: 'AntD: Button + Popconfirm (confirm before download)'
task_template: confirm_cancel
secondary_template: null
browsergym_goal: Download the redacted audit log CSV. Click the "Download audit log" button and confirm the download when
prompted. The task will finish automatically when done.
ui_copy: Audit log export Download audit log (confirmation required)
setup_description: |-
Layout: isolated_card anchored near the bottom-left of the viewport (not centered).
The card is titled "Audit log export".
A primary Button labeled "Download audit log" triggers an AntD Popconfirm.
Popconfirm text: "This file contains sensitive data. Continue?" with two actions: "Cancel" and "Download".
The download does not start until the "Download" confirm button in the Popconfirm is clicked.
A nearby secondary control "Copy share link" is present as a distractor.
After confirming, a toast appears: "Download started: audit-log-redacted.csv".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: bottom_left
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 3
semantic_observability: 2
disambiguation_load: 1
justification: Two-step flow with an inline confirmation overlay; the download only starts after confirming. Placement
in the bottom-left slightly increases acquisition difficulty.
success_trigger:
human_readable:
- Popconfirm is accepted via the "Download" confirm control.
- A download is initiated for file_id=audit_log_redacted_csv with suggested filename "audit-log-redacted.csv".
- No other file download qualifies.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: audit_log_redacted_csv
filename: audit-log-redacted.csv
tolerance: null
require_confirm: true
confirm_control: Download
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Cancel" in the Popconfirm (no download should start).
- Clicking outside the Popconfirm to dismiss it without downloading.
- Any download event for a different file_id/filename.
- Clicking "Copy share link" (clipboard action, not download).
expected_interaction_path: Click "Download audit log" Popconfirm appears click "Download" in Popconfirm.
- id: download_trigger-antd-T07
name: Scroll to find appendix download link
canonical_type: download_trigger
implementation_source: antd
implementation_variant: attachment_list
implementation_component: 'AntD: List of Typography.Link download anchors (compose)'
task_template: scroll_find
secondary_template: null
browsergym_goal: Scroll down to the Attachments section and download the "Release notes appendix" ZIP. The task will finish
automatically when done.
ui_copy: Release notes Attachments are at the bottom of the page.
setup_description: |-
Layout: dashboard-style page with a long "Release notes" article.
At initial load, the viewport shows the top of the article and none of the attachment links are visible.
At the bottom of the page there is an "Attachments" panel containing exactly three downloadable items, each with a label and a download link:
1) "Release notes PDF" → downloads release-notes.pdf
2) "Changelog CSV" → downloads changelog.csv
3) "Release notes appendix" → downloads release-notes-appendix.zip (TARGET)
Each download control is a blue Typography.Link implemented as an <a download=...>.
A "Back to top" button floats in the corner as a distractor.
Clicking the correct link shows a toast: "Download started: release-notes-appendix.zip".
scene_context:
theme: light
spacing: comfortable
layout: dashboard
placement: center
scale: default
instances: 3
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Requires scrolling to reveal the target and selecting the correct link among multiple similar attachment
downloads. No overlays, but disambiguation and search-by-label are required.
success_trigger:
human_readable:
- A download is initiated for file_id=release_appendix_zip with suggested filename "release-notes-appendix.zip".
- The download must come from the "Release notes appendix" attachment link (not the other attachments).
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: release_appendix_zip
filename: release-notes-appendix.zip
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Release notes appendix
terminal_condition: true
negative_cases:
- Downloading "release-notes.pdf" or "changelog.csv" instead of the appendix ZIP.
- Scrolling but not initiating any download.
- Clicking "Back to top" without downloading.
expected_interaction_path: Scroll down until the Attachments panel is visible click the "Release notes appendix" download
link.
- id: download_trigger-antd-T08
name: Download config export from nested menu (dark, compact)
canonical_type: download_trigger
implementation_source: antd
implementation_variant: nested_menu_icon
implementation_component: 'AntD: Dropdown + Menu with SubMenu (composite) triggered by icon-only Button'
task_template: open_and_select
secondary_template: null
browsergym_goal: In the Export menu, download the configuration as XML. Open the menu and choose "Export" "XML". The task
will finish automatically when done.
ui_copy: Export tools Use the menu to download a configuration export.
setup_description: |-
Layout: isolated_card centered on the page in dark theme with compact spacing.
Card title: "Export tools".
There is an icon-only AntD Button (download icon) labeled via tooltip "Download"; clicking it opens a Dropdown Menu.
Menu items:
- "Download latest" (downloads a different file; distractor)
- "Export" (opens a nested submenu)
Inside the "Export" submenu are three items: "CSV", "JSON", "XML".
Selecting "XML" initiates a download of "config-export.xml".
No confirmation dialog; feedback is a toast: "Download started: config-export.xml".
scene_context:
theme: dark
spacing: compact
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 4
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 2
justification: Small icon trigger plus a nested submenu increases acquisition difficulty and interaction depth. Compact
spacing in dark theme reduces visual separation between menu items.
success_trigger:
human_readable:
- A download is initiated for file_id=config_export_xml with suggested filename "config-export.xml".
- The selection must be the XML item inside the Export submenu (not other menu items).
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: config_export_xml
filename: config-export.xml
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting "CSV" or "JSON" in the submenu (downloads the wrong format).
- Clicking "Download latest" (downloads a different file).
- Opening the menu but closing it without initiating a download.
- Any download event for a different file_id/filename.
expected_interaction_path: Click the icon-only Download button menu opens open "Export" submenu click "XML".
- id: download_trigger-antd-T09
name: Match a reference thumbnail and download the correct asset
canonical_type: download_trigger
implementation_source: antd
implementation_variant: icon_button_visual_match
implementation_component: 'AntD: Card grid + icon Button rendered as <a download> (compose)'
task_template: match_reference
secondary_template: null
browsergym_goal: Download the asset that matches the reference preview shown at the top of the card. Use the download icon
on the matching asset card. The task will finish automatically when done.
ui_copy: Asset downloader Match the reference preview and download the matching asset.
setup_description: |-
Layout: isolated_card centered on the page.
Component scale is set to small (smaller cards and icons than default).
At the top of the card, a small reference preview thumbnail is shown (no filename text).
Below it are two asset cards side-by-side, each showing a thumbnail and a right-aligned download icon:
- Card label: "Asset A" with thumbnail pattern A (distractor)
- Card label: "Asset B" with thumbnail pattern B (TARGET matches the reference preview)
Each download icon is an AntD icon-only Button implemented as an <a download=...>.
Clicking the correct card's download icon initiates download "pattern-logo.svg" and shows a toast with the filename.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: small
instances: 2
guidance: visual
clutter: none
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 5
disambiguation_load: 4
justification: Target is a small icon and the correct choice is specified visually rather than by text, increasing observability
and disambiguation difficulty. Two similar instances require selecting the correct card.
success_trigger:
human_readable:
- A download is initiated for file_id=pattern_logo_svg with suggested filename "pattern-logo.svg".
- The download must be triggered from the matching asset card (instance "Asset B").
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: pattern_logo_svg
filename: pattern-logo.svg
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Asset B
terminal_condition: true
negative_cases:
- Downloading from the non-matching card (Asset A).
- Any download event for a different file_id/filename.
- Clicking on the thumbnail image without triggering the download icon (if thumbnail is non-clickable).
expected_interaction_path: Compare reference thumbnail to the two card thumbnails click the download icon on the matching
card.
- id: download_trigger-antd-T10
name: Download a specific row export from dense table
canonical_type: download_trigger
implementation_source: antd
implementation_variant: table_row_icon
implementation_component: 'AntD: Table with per-row icon Button (<a download>) (compose)'
task_template: table_operation
secondary_template: null
browsergym_goal: In the regional sales table, download the CSV for the "North region" row by clicking its download icon.
The task will finish automatically when done.
ui_copy: Regional sales table Download CSV per region.
setup_description: |-
Layout: table_cell scene centered on the page with compact spacing.
A dense AntD Table shows four rows (North region, South region, East region, West region) and several columns (Region, Last updated, Owner, Actions).
In the Actions column, each row contains two icon buttons: a view icon (distractor) and a download icon (TARGET control).
The download icon is implemented as an <a download=...> trigger for that row.
The page header includes filters (dropdowns and date range) and a "Refresh" button as additional clutter; they are not required.
Clicking the download icon in the "North region" row initiates "north-region-sales.csv" and shows a toast with the filename.
scene_context:
theme: light
spacing: compact
layout: table_cell
placement: center
scale: default
instances: 4
guidance: text
clutter: high
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: Dense table layout with multiple similar per-row icon targets requires careful row/column disambiguation.
Compact spacing and high clutter increase misclick risk.
success_trigger:
human_readable:
- A download is initiated for file_id=north_region_sales_csv with suggested filename "north-region-sales.csv".
- The download must be initiated from the download icon in the "North region" row (correct instance).
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: north_region_sales_csv
filename: north-region-sales.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: North region row
terminal_condition: true
negative_cases:
- Downloading from any other region row (South/East/West).
- Clicking the view icon instead of the download icon.
- Any download event for a different file_id/filename.
- Sorting/filtering the table without downloading.
expected_interaction_path: Locate the "North region" row in its Actions cell click the download icon.
- id: download_trigger-mui-T01
name: Download receipt PDF from contained button
canonical_type: download_trigger
implementation_source: mui
implementation_variant: button_contained
implementation_component: 'MUI: Button (variant=contained, href) rendered as <a download> (compose)'
task_template: activate
secondary_template: null
browsergym_goal: 'Download the receipt PDF for Receipt #7781 by clicking the "Download receipt" button. The task will finish
automatically when done.'
ui_copy: 'Receipt #7781 — Download receipt'
setup_description: |-
Layout: isolated_card centered on the page.
The card title reads "Receipt #7781".
A prominent MUI contained Button labeled "Download receipt" is rendered as an anchor element because it has an href; it also includes download="receipt-7781.pdf".
A secondary outlined Button labeled "Open details" is present as a distractor and expands extra receipt metadata (no download).
Initial helper text under the button says "PDF file".
When the download trigger is clicked, an inline snackbar appears: "Download started: receipt-7781.pdf".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 1
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 1
disambiguation_load: 1
justification: Single large contained button with clear label; minimal clutter and direct feedback via snackbar.
success_trigger:
human_readable:
- A download is initiated for file_id=receipt_7781_pdf with suggested filename "receipt-7781.pdf".
- No confirmation step is required.
- Single download trigger instance on the card.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: receipt_7781_pdf
filename: receipt-7781.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Open details" without initiating a download.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download receipt" observe snackbar confirmation.
- id: download_trigger-mui-T02
name: Download terms text via MUI Link
canonical_type: download_trigger
implementation_source: mui
implementation_variant: text_link
implementation_component: 'MUI: Link component (<a download>) (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the Terms of Service text file by clicking the "Download Terms" link. The task will finish automatically
when done.
ui_copy: Legal Download Terms
setup_description: |-
Layout: isolated_card centered on the page.
Card header: "Legal".
Two MUI Link components are displayed in a short list:
- "Download Terms" (TARGET) implemented as <a download="terms-of-service.txt">.
- "View Terms online" (distractor) navigates to an internal page.
A small caption below notes: "Text file".
On successful download trigger, a snackbar appears with the filename.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Small link target but only one true download link is present, with immediate textual feedback.
success_trigger:
human_readable:
- A download is initiated for file_id=terms_txt with suggested filename "terms-of-service.txt".
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: terms_txt
filename: terms-of-service.txt
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "View Terms online" instead of downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Click the "Download Terms" link observe snackbar.
- id: download_trigger-mui-T03
name: Download product image pack from form section
canonical_type: download_trigger
implementation_source: mui
implementation_variant: button_outlined
implementation_component: 'MUI: Button (variant=outlined, href) rendered as <a download> (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the product image pack ZIP by clicking the "Download image pack" button in the Media section.
The task will finish automatically when done.
ui_copy: Media Download image pack
setup_description: |-
Layout: form_section centered on the page.
A settings form includes text fields (Title, SKU) and toggles (Published, Featured) as background clutter; none are required.
A subsection titled "Media" shows a small gallery preview and an outlined MUI Button labeled "Download image pack".
The button is rendered as an anchor element with download="product-images.zip".
A nearby icon button "Upload" is present as a distractor (does not download).
On click, a snackbar reads "Download started: product-images.zip".
scene_context:
theme: light
spacing: comfortable
layout: form_section
placement: center
scale: default
instances: 1
guidance: text
clutter: low
difficulty:
difficulty_bucket: easy
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Single download button within a realistic form; some extra controls increase clutter but the label is explicit.
success_trigger:
human_readable:
- A download is initiated for file_id=product_images_zip with suggested filename "product-images.zip".
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: product_images_zip
filename: product-images.zip
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Upload" or interacting with form fields without downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Find the Media section click "Download image pack".
- id: download_trigger-mui-T04
name: Confirm user export download in dialog
canonical_type: download_trigger
implementation_source: mui
implementation_variant: dialog_confirm
implementation_component: 'MUI: Button + Dialog (confirmation before download)'
task_template: confirm_cancel
secondary_template: null
browsergym_goal: Download the user export CSV. Click "Download user export" and confirm the download in the dialog. The
task will finish automatically when done.
ui_copy: User export Confirmation required
setup_description: |-
Layout: isolated_card centered on the page.
Card title: "User export".
A contained Button labeled "Download user export" opens a MUI Dialog.
Dialog title: "Confirm download" with warning text about sensitive data.
Dialog actions: "Cancel" and "Download". The download only starts after clicking "Download".
Outside the dialog, a text link "Learn more" is present as a distractor.
After confirming, a snackbar appears: "Download started: user-export.csv".
scene_context:
theme: light
spacing: comfortable
layout: modal_flow
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 2
disambiguation_load: 1
justification: Requires handling a modal dialog overlay and choosing the correct confirm action. Modal layering and extra
step raise depth and feedback dynamics compared to a single click.
success_trigger:
human_readable:
- The confirmation dialog is accepted via the "Download" action.
- A download is initiated for file_id=pii_export_csv with suggested filename "user-export.csv".
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: pii_export_csv
filename: user-export.csv
tolerance: null
require_confirm: true
confirm_control: Download
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Cancel" or dismissing the dialog without downloading.
- Any download event for a different file_id/filename.
- Closing the dialog via the X/escape without confirming.
expected_interaction_path: Click "Download user export" dialog opens click "Download" in dialog.
- id: download_trigger-mui-T05
name: Download the chart JSON that matches a reference preview
canonical_type: download_trigger
implementation_source: mui
implementation_variant: menu_with_previews
implementation_component: 'MUI: Button + Menu + MenuItem (each item triggers download) (compose)'
task_template: open_and_select
secondary_template: null
browsergym_goal: Open the "Download" menu and download the chart JSON that matches the reference preview shown in the card
header. The task will finish automatically when done.
ui_copy: Charts Reference preview shown. Use the Download menu to pick the matching export.
setup_description: |-
Layout: isolated_card centered on the page.
Card header shows a small reference preview thumbnail (no filename), e.g., a tiny chart icon.
A MUI Button labeled "Download" opens a MUI Menu.
The menu contains three MenuItems, each showing a small thumbnail preview on the left and a label on the right:
- "Chart export A" (thumbnail A)
- "Chart export B" (thumbnail B) (TARGET matches the header reference preview)
- "Chart export C" (thumbnail C)
Selecting an item initiates download immediately (no extra Apply).
Target download filename is "metrics-chart.json" and a snackbar confirms the start.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: mixed
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 3
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 4
disambiguation_load: 2
justification: Requires opening a menu and selecting among multiple visually similar items based on a reference thumbnail.
Reduced textual anchoring increases observability difficulty.
success_trigger:
human_readable:
- A download is initiated for file_id=chart_ref_json with suggested filename "metrics-chart.json".
- The download must come from the menu item whose thumbnail matches the header reference preview.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: chart_ref_json
filename: metrics-chart.json
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting a non-matching chart export item (downloads a different file_id).
- Opening the menu but not selecting any item.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download" compare menu thumbnails to header reference click the matching menu item.
- id: download_trigger-mui-T06
name: Scroll inside attachments panel to download Appendix B
canonical_type: download_trigger
implementation_source: mui
implementation_variant: scrollable_panel_list
implementation_component: 'MUI: List + IconButton (download) inside scroll container (compose)'
task_template: scroll_find
secondary_template: null
browsergym_goal: In the Attachments panel, scroll until you see "Appendix B" and download it as a PDF using its download
icon. The task will finish automatically when done.
ui_copy: Attachments panel Scroll to find Appendix B and download it.
setup_description: |-
Layout: dashboard scene with a floating Attachments panel anchored to the bottom-right of the viewport.
The floating panel has a fixed height and an internal scrollbar.
Inside the panel is a list of attachment items; only about three items are visible at a time.
Each list item shows the attachment title on the left and two small icon buttons on the right: a pin icon (distractor) and a download icon (TARGET).
The target item is titled "Appendix B" and downloads "appendix-b.pdf" when its download icon is clicked.
At initial load, "Appendix B" is not visible; it appears after scrolling within the panel.
A snackbar confirms: "Download started: appendix-b.pdf".
scene_context:
theme: light
spacing: comfortable
layout: dashboard
placement: bottom_right
scale: default
instances: 3
guidance: text
clutter: medium
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 3
justification: Requires locating the correct scrollable region and then clicking a small icon button within a list. Multiple
similar list items and dual-icon rows increase acquisition and disambiguation.
success_trigger:
human_readable:
- A download is initiated for file_id=appendix_b_pdf with suggested filename "appendix-b.pdf".
- The download must be triggered from the "Appendix B" list item (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: appendix_b_pdf
filename: appendix-b.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Appendix B
terminal_condition: true
negative_cases:
- Clicking the pin icon instead of the download icon.
- Downloading a different attachment item.
- Scrolling the main page instead of the Attachments panel and never revealing the target item.
expected_interaction_path: Identify the floating Attachments panel scroll within the panel find "Appendix B" click
its download icon.
- id: download_trigger-mui-T07
name: Download a specific invoice export from a small table
canonical_type: download_trigger
implementation_source: mui
implementation_variant: table_row_link
implementation_component: 'MUI: Table + Link (<a download>) in cell (compose)'
task_template: table_operation
secondary_template: null
browsergym_goal: In the invoices table, download the CSV for the "January 2026" row by clicking its "Download CSV" link.
The task will finish automatically when done.
ui_copy: Invoices table Download CSV per row.
setup_description: |-
Layout: table_cell scene centered on the page.
A compact MUI Table shows two invoice rows: "December 2025" and "January 2026".
Columns include Month, Total, Status, and Export.
In the Export column, each row has a MUI Link labeled "Download CSV" implemented as an anchor with a download attribute.
The target row is "January 2026" which downloads "invoice-jan-2026.csv".
A toolbar above the table has a non-functional filter dropdown and a "New invoice" button as clutter.
A snackbar confirms the download start.
scene_context:
theme: light
spacing: comfortable
layout: table_cell
placement: center
scale: default
instances: 2
guidance: text
clutter: medium
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Requires selecting the correct row in a table and clicking a small link among multiple similar row actions.
Moderate clutter from toolbar controls.
success_trigger:
human_readable:
- A download is initiated for file_id=table_row_invoice_csv with suggested filename "invoice-jan-2026.csv".
- The download must be triggered from the "January 2026" row (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: table_row_invoice_csv
filename: invoice-jan-2026.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: January 2026 row
terminal_condition: true
negative_cases:
- Downloading from the "December 2025" row.
- Interacting with toolbar controls without downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Locate the "January 2026" row click its "Download CSV" link.
- id: download_trigger-mui-T08
name: Download the roadmap file by matching a visual badge
canonical_type: download_trigger
implementation_source: mui
implementation_variant: card_grid_visual
implementation_component: 'MUI: Card grid + IconButton download (compose)'
task_template: match_reference
secondary_template: null
browsergym_goal: Download the roadmap file that matches the reference badge shown above the grid. Click the download icon
on the matching card. The task will finish automatically when done.
ui_copy: Roadmap downloads Match the reference badge and download the matching file.
setup_description: |-
Layout: isolated_card centered on the page.
At the top, a small reference badge (a colored shape/pattern) is displayed without text.
Below it is a 3-card grid. Each card contains:
- A small badge preview (different on each card)
- A short label ("Roadmap A", "Roadmap B", "Roadmap C")
- A small download IconButton in the top-right corner of the card
Only one card's badge matches the reference (TARGET is "Roadmap B").
Clicking the matching card's download icon triggers download "roadmap-preview.pptx".
A snackbar confirms the filename.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 3
guidance: visual
clutter: none
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 5
disambiguation_load: 4
justification: Selection depends on visual badge matching rather than text, making observability challenging. Multiple
similar cards and small download icons increase disambiguation and acquisition difficulty.
success_trigger:
human_readable:
- A download is initiated for file_id=ref_thumbnail_pptx with suggested filename "roadmap-preview.pptx".
- The download must be initiated from the matching card (instance "Roadmap B").
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: ref_thumbnail_pptx
filename: roadmap-preview.pptx
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Roadmap B
terminal_condition: true
negative_cases:
- Downloading from a non-matching card (Roadmap A or Roadmap C).
- Clicking on the card body without clicking the download icon (if the card body opens a preview drawer).
- Any download event for a different file_id/filename.
expected_interaction_path: Compare reference badge to the three card badges click the download icon on the matching card.
- id: download_trigger-mui-T09
name: Open export drawer and download full backup
canonical_type: download_trigger
implementation_source: mui
implementation_variant: drawer_flow
implementation_component: 'MUI: Drawer + Buttons rendered as <a download> (compose)'
task_template: open_overlay
secondary_template: activate
browsergym_goal: Open the "Export Center" drawer and download the "Full backup (.zip)" file. The task will finish automatically
when done.
ui_copy: Export Center Open the drawer to access download options.
setup_description: |-
Layout: drawer_flow.
At page load, the main view shows a small toolbar with a Button labeled "Open Export Center".
Clicking it opens a MUI Drawer that slides in from the right side (overlaying the page).
Inside the drawer are two clearly labeled download actions (two instances of the download trigger):
- "Quick export (.csv)" (distractor)
- "Full backup (.zip)" (TARGET)
Each action is a MUI Button rendered as an <a> with a download attribute.
Clicking "Full backup (.zip)" triggers download "full-backup.zip" and shows a snackbar.
The drawer can also be closed via an X icon (distractor).
scene_context:
theme: light
spacing: comfortable
layout: drawer_flow
placement: top_right
scale: default
instances: 2
guidance: text
clutter: low
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 4
justification: Requires opening a drawer overlay before the download controls are available and then choosing the correct
download among multiple options. Overlay layering and instance disambiguation increase difficulty.
success_trigger:
human_readable:
- The Export Center drawer is opened (prerequisite) and a download is initiated for file_id=full_backup_zip with suggested
filename "full-backup.zip".
- The download must be triggered via the "Full backup (.zip)" action (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: full_backup_zip
filename: full-backup.zip
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Full backup (.zip)
terminal_condition: true
negative_cases:
- Opening the drawer but downloading the quick export CSV instead.
- Closing the drawer without downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Open Export Center" drawer opens click "Full backup (.zip)".
- id: download_trigger-mui-T10
name: Download settings bundle from nested menu (dark, compact)
canonical_type: download_trigger
implementation_source: mui
implementation_variant: nested_menu_icon
implementation_component: 'MUI: IconButton + Menu + nested Popover submenu (composite)'
task_template: open_and_select
secondary_template: null
browsergym_goal: Download the Settings bundle as JSON. Open the overflow menu and choose "Export" "Settings bundle (.json)".
The task will finish automatically when done.
ui_copy: Settings tools Use the overflow menu to export settings.
setup_description: |-
Layout: isolated_card centered on the page in dark theme with compact spacing.
A small MUI IconButton with a "more" (three dots) icon opens an overflow Menu.
Menu items include: "Copy", "Share", and "Export".
Choosing "Export" opens a second-layer submenu (implemented as a nested Popover anchored to the Export item).
The submenu contains three download options:
- "Settings bundle (.json)" (TARGET) → downloads settings-bundle.json
- "Theme tokens (.json)" (distractor)
- "Shortcuts (.txt)" (distractor)
Selecting the target option triggers the download immediately and shows a snackbar.
No confirmation dialog beyond the nested submenu.
scene_context:
theme: dark
spacing: compact
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: hard
tier: L3
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 4
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 2
justification: Small overflow icon plus a two-layer menu/submenu interaction increases depth and misclick risk, especially
in compact dark mode where spacing and contrast cues are reduced.
success_trigger:
human_readable:
- A download is initiated for file_id=settings_bundle_json with suggested filename "settings-bundle.json".
- The selection must come from the nested Export submenu option "Settings bundle (.json)".
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: settings_bundle_json
filename: settings-bundle.json
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting "Theme tokens" or "Shortcuts" (downloads wrong file).
- Opening the overflow menu but not opening the Export submenu.
- Closing menus without initiating a download.
- Any download event for a different file_id/filename.
expected_interaction_path: Click overflow IconButton menu opens click/activate "Export" submenu opens click "Settings
bundle (.json)".
- id: download_trigger-mantine-T01
name: Download inventory CSV from Mantine button link
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: button_as_anchor
implementation_component: 'Mantine: Button component="a" with download attribute (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the February 2026 inventory CSV by clicking the "Download inventory CSV" button. The task will
finish automatically when done.
ui_copy: Inventory export Download inventory CSV
setup_description: |-
Layout: isolated_card centered on the page.
Card title: "Inventory export".
A Mantine Button labeled "Download inventory CSV" is rendered as an anchor (component="a") with href to a blob URL and download="inventory-feb-2026.csv".
A secondary subtle Button labeled "Preview" is present as a distractor (opens a preview panel only).
Below the buttons, helper text notes the file size.
On click, an inline notification appears: "Download started: inventory-feb-2026.csv".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 1
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 1
disambiguation_load: 1
justification: Single prominent button triggers the download directly, with clear label and immediate notification.
success_trigger:
human_readable:
- A download is initiated for file_id=inventory_feb_2026_csv with suggested filename "inventory-feb-2026.csv".
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: inventory_feb_2026_csv
filename: inventory-feb-2026.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Preview" instead of downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download inventory CSV" observe notification.
- id: download_trigger-mantine-T02
name: Download onboarding guide PDF via Mantine Anchor
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: anchor_link
implementation_component: 'Mantine: Anchor (<a download>) (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the onboarding guide PDF by clicking the "Download onboarding guide" link. The task will finish
automatically when done.
ui_copy: Getting started Download onboarding guide
setup_description: |-
Layout: isolated_card centered on the page.
A short "Getting started" card contains explanatory text and two links.
The first link is a Mantine Anchor labeled "Download onboarding guide" implemented as <a download="onboarding-guide.pdf">.
The second link "Read online" is a distractor that navigates to a documentation page.
Clicking the download link initiates download and shows a notification with the filename.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L0
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 1
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Small link target but clear labeling and only one download link. Immediate feedback reduces uncertainty.
success_trigger:
human_readable:
- A download is initiated for file_id=onboarding_pdf with suggested filename "onboarding-guide.pdf".
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: onboarding_pdf
filename: onboarding-guide.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Read online" instead of downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download onboarding guide" observe notification.
- id: download_trigger-mantine-T03
name: Download avatar PNG from icon action
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: action_icon
implementation_component: 'Mantine: ActionIcon component="a" with download attribute (compose)'
task_template: activate
secondary_template: null
browsergym_goal: Download the avatar image PNG by clicking the download icon next to the avatar preview. The task will finish
automatically when done.
ui_copy: Profile Avatar preview with a download icon
setup_description: |-
Layout: isolated_card centered on the page.
The card shows a circular avatar preview on the left.
To the right of the avatar is a small Mantine ActionIcon (download glyph) with aria-label "Download avatar"; it is rendered as an anchor and uses download="avatar.png".
A second ActionIcon with an edit pencil (distractor) is placed nearby.
On click of the download icon, a small notification appears: "Download started: avatar.png".
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: easy
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Small icon target with a nearby distractor icon increases acquisition difficulty slightly, but labeling
and immediate feedback keep it in the easy range.
success_trigger:
human_readable:
- A download is initiated for file_id=avatar_png with suggested filename "avatar.png".
- No confirmation step is required.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: avatar_png
filename: avatar.png
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking the edit pencil icon instead of the download icon.
- Any download event for a different file_id/filename.
expected_interaction_path: Locate the avatar preview click the adjacent download ActionIcon.
- id: download_trigger-mantine-T04
name: Download KPI snapshot via Mantine menu
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: menu_download_options
implementation_component: 'Mantine: Menu (Menu.Target + Button) with Menu.Item downloads (compose)'
task_template: open_and_select
secondary_template: null
browsergym_goal: Download the KPI snapshot as a PNG. Open the "Download" menu and choose "PNG". The task will finish automatically
when done.
ui_copy: KPI snapshot Choose a format from the Download menu.
setup_description: |-
Layout: isolated_card centered on the page.
Card title: "KPI snapshot".
A Mantine Button labeled "Download" is wrapped in a Mantine Menu.Target.
Clicking the button opens a Mantine Menu dropdown with items: "PNG", "PDF", "CSV".
Selecting an item triggers an immediate download with a suggested filename.
The target item is "PNG" which downloads "kpi-snapshot.png".
A disabled menu item "Send by email" appears as a distractor.
A notification appears on successful download start.
scene_context:
theme: light
spacing: comfortable
layout: isolated_card
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 1
justification: Requires opening a menu and selecting the correct format among several options. Labels are clear but an
overlay layer and multiple choices add complexity.
success_trigger:
human_readable:
- A download is initiated for file_id=report_menu_png with suggested filename "kpi-snapshot.png".
- The download must come from selecting "PNG" in the menu.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: report_menu_png
filename: kpi-snapshot.png
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting "PDF" or "CSV" instead of "PNG".
- Opening the menu but not selecting any option.
- Clicking disabled "Send by email".
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Download" menu opens click "PNG".
- id: download_trigger-mantine-T05
name: Scroll to download the logo pack ZIP
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: attachment_links_scroll
implementation_component: 'Mantine: Anchor download links in attachments section (compose)'
task_template: scroll_find
secondary_template: null
browsergym_goal: Scroll to the Attachments section and download the "Logo pack" ZIP file. The task will finish automatically
when done.
ui_copy: Brand kit Attachments are below. Scroll to download the Logo pack.
setup_description: |-
Layout: dashboard-style page anchored toward the top-left of the viewport.
The page contains a long "Brand kit" description and examples.
The "Attachments" section appears further down and is not visible initially.
In the Attachments section there are exactly two downloadable items, each with a Mantine Anchor link:
- "Brand guidelines" → downloads brand-guidelines.pdf (distractor)
- "Logo pack" → downloads logo-pack.zip (TARGET)
Clicking the correct link shows a notification: "Download started: logo-pack.zip".
scene_context:
theme: light
spacing: comfortable
layout: dashboard
placement: top_left
scale: default
instances: 2
guidance: text
clutter: low
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 3
justification: Requires scrolling to reveal the attachments and selecting the correct link among multiple downloads. Otherwise
straightforward.
success_trigger:
human_readable:
- A download is initiated for file_id=logo_pack_zip with suggested filename "logo-pack.zip".
- The download must be triggered from the "Logo pack" attachment (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: logo_pack_zip
filename: logo-pack.zip
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Logo pack
terminal_condition: true
negative_cases:
- Downloading the Brand guidelines PDF instead of the Logo pack ZIP.
- Scrolling but not initiating any download.
- Any download event for a different file_id/filename.
expected_interaction_path: Scroll down to Attachments click "Logo pack" download link.
- id: download_trigger-mantine-T06
name: Confirm GDPR export download in modal
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: modal_confirm
implementation_component: 'Mantine: Button + Modal (confirmation before download)'
task_template: confirm_cancel
secondary_template: null
browsergym_goal: Download the GDPR export CSV. Click "Download GDPR export" and confirm in the modal. The task will finish
automatically when done.
ui_copy: GDPR export Confirmation required
setup_description: |-
Layout: modal_flow.
A card titled "GDPR export" contains a Mantine Button labeled "Download GDPR export".
Clicking it opens a Mantine Modal with title "Confirm download" and warning text.
Modal footer has two buttons: "Cancel" and "Download".
The download is only initiated after clicking the "Download" button in the modal.
A small checkbox "I understand" is shown but is pre-checked and not required (visual distractor only).
After confirming, a notification appears: "Download started: gdpr-export.csv".
scene_context:
theme: light
spacing: comfortable
layout: modal_flow
placement: center
scale: default
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: mid
tier: L1
axes_ratings:
precision_requirement: 1
target_acquisition: 2
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 3
semantic_observability: 2
disambiguation_load: 1
justification: Modal confirmation adds an extra layer and a required second click. Clear button labels keep it manageable
but depth/feedback dynamics increase.
success_trigger:
human_readable:
- The confirmation modal is accepted via the "Download" control.
- A download is initiated for file_id=gdpr_export_csv with suggested filename "gdpr-export.csv".
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: gdpr_export_csv
filename: gdpr-export.csv
tolerance: null
require_confirm: true
confirm_control: Download
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Clicking "Cancel" or dismissing the modal without downloading.
- Any download event for a different file_id/filename.
- Closing the modal via escape or X without confirming.
expected_interaction_path: Click "Download GDPR export" modal opens click "Download" in modal.
- id: download_trigger-mantine-T07
name: Download contract PDF from dense Mantine table
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: table_row_icon
implementation_component: 'Mantine: Table + ActionIcon download per row (compose)'
task_template: table_operation
secondary_template: null
browsergym_goal: In the contracts table, download the PDF for "Contract 2026" by clicking its download icon. The task will
finish automatically when done.
ui_copy: Contracts table Download a PDF per row.
setup_description: |-
Layout: table_cell scene centered on the page with compact spacing.
A Mantine Table lists four rows: "Contract 2024", "Contract 2025", "Contract 2026", "Contract 2027".
Each row has an Actions column with two small ActionIcons: view (distractor) and download (TARGET).
The download ActionIcon is rendered as an anchor with download attribute for that row.
Additional clutter: a toolbar above the table with pagination controls and a search field (not required).
Clicking the download icon for "Contract 2026" triggers download "contract-2026.pdf" and shows a notification.
scene_context:
theme: light
spacing: compact
layout: table_cell
placement: center
scale: default
instances: 4
guidance: text
clutter: high
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 5
justification: Compact dense table with multiple similar rows and small per-row icons increases both target acquisition
difficulty and disambiguation load.
success_trigger:
human_readable:
- A download is initiated for file_id=table_row_contract_pdf with suggested filename "contract-2026.pdf".
- The download must be triggered from the "Contract 2026" row (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: table_row_contract_pdf
filename: contract-2026.pdf
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Contract 2026 row
terminal_condition: true
negative_cases:
- Downloading any other contract year.
- Clicking the view icon instead of the download icon.
- Any download event for a different file_id/filename.
expected_interaction_path: Find row "Contract 2026" click its download ActionIcon.
- id: download_trigger-mantine-T08
name: Match reference preview and download finance sheet (dark)
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: visual_match_cards
implementation_component: 'Mantine: SimpleGrid cards + Button/ActionIcon download (compose)'
task_template: match_reference
secondary_template: null
browsergym_goal: Download the finance sheet that matches the reference preview shown above the cards. Use the download control
on the matching card. The task will finish automatically when done.
ui_copy: Finance sheets Match the reference preview and download the correct file.
setup_description: |-
Layout: isolated_card centered on the page.
Theme is dark and component scale is small.
At the top of the card is a small reference preview thumbnail of a spreadsheet-like grid (no text label).
Below it are two file cards side-by-side:
- "Sheet A" with preview A (distractor)
- "Sheet B" with preview B (TARGET matches the reference)
Each card has a small download button/icon rendered as an anchor with download attribute.
Clicking the matching card's download control initiates download "finance-sheet.xlsx" and shows a notification.
scene_context:
theme: dark
spacing: comfortable
layout: isolated_card
placement: center
scale: small
instances: 2
guidance: visual
clutter: none
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 3
depth_layering: 1
feedback_dynamics: 2
semantic_observability: 5
disambiguation_load: 4
justification: Visual-only identification in dark mode with small controls reduces observability and increases misclick
risk. Two similar instances require accurate disambiguation.
success_trigger:
human_readable:
- A download is initiated for file_id=ref_badge_xlsx with suggested filename "finance-sheet.xlsx".
- The download must be initiated from the matching card (instance "Sheet B").
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: ref_badge_xlsx
filename: finance-sheet.xlsx
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Sheet B
terminal_condition: true
negative_cases:
- Downloading from Sheet A (non-matching).
- Any download event for a different file_id/filename.
- Interacting with the previews without triggering the download control.
expected_interaction_path: Compare reference preview to the two card previews click download on the matching card.
- id: download_trigger-mantine-T09
name: Open drawer and download full export CSV
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: drawer_flow
implementation_component: 'Mantine: Drawer + Buttons/Anchors with download (compose)'
task_template: open_overlay
secondary_template: activate
browsergym_goal: Open the Export drawer and download the "Full export (.csv)" file. The task will finish automatically when
done.
ui_copy: Export drawer Open to download.
setup_description: |-
Layout: drawer_flow with the trigger control near the bottom-right of the viewport.
Initially, the page shows a small toolbar with a Mantine Button labeled "Open export drawer".
Clicking it opens a Mantine Drawer overlay.
Inside the drawer are two download options (two instances):
- "Summary (.csv)" (distractor)
- "Full export (.csv)" (TARGET)
Each option is a Mantine Button rendered as an anchor with download attribute.
Clicking "Full export (.csv)" initiates download "export-center.csv" and shows a notification.
The drawer has a close X icon as a distractor.
scene_context:
theme: light
spacing: comfortable
layout: drawer_flow
placement: bottom_right
scale: default
instances: 2
guidance: text
clutter: low
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 3
density_choice_interference: 2
depth_layering: 3
feedback_dynamics: 2
semantic_observability: 2
disambiguation_load: 4
justification: Requires opening a drawer overlay and choosing the correct download option among multiple similar actions.
Overlay layering and instance disambiguation raise difficulty.
success_trigger:
human_readable:
- A download is initiated for file_id=export_drawer_csv with suggested filename "export-center.csv".
- The download must be triggered via the "Full export (.csv)" option (correct instance).
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: export_drawer_csv
filename: export-center.csv
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: true
target_instance_label_or_id: Full export (.csv)
terminal_condition: true
negative_cases:
- Opening the drawer but downloading the summary CSV instead.
- Closing the drawer without downloading.
- Any download event for a different file_id/filename.
expected_interaction_path: Click "Open export drawer" drawer opens click "Full export (.csv)".
- id: download_trigger-mantine-T10
name: Download YAML config template from a dense menu (small, compact)
canonical_type: download_trigger
implementation_source: mantine
implementation_variant: dense_menu
implementation_component: 'Mantine: ActionIcon Menu.Target + Menu dropdown with many items (compose)'
task_template: open_and_select
secondary_template: null
browsergym_goal: Download the "Config template" as a YAML file. Open the templates menu and select "Config template (.yaml)".
The task will finish automatically when done.
ui_copy: Templates Open the menu to download a template file.
setup_description: |-
Layout: isolated_card centered on the page.
Spacing is compact and component scale is small (smaller icon and tighter menu rows).
A small ActionIcon (download glyph) opens a Mantine Menu dropdown labeled via tooltip "Download templates".
The menu contains several similarly named items (to increase confusability), including:
- "Config template (.json)" (distractor)
- "Config template (.yaml)" (TARGET)
- "Docker compose (.yaml)" (distractor)
- "Environment sample (.env)" (distractor)
- "Deploy script (.sh)" (distractor)
Selecting an item initiates the corresponding download immediately.
The target selection downloads "config-template.yaml" and shows a notification.
scene_context:
theme: light
spacing: compact
layout: isolated_card
placement: center
scale: small
instances: 1
guidance: text
clutter: none
difficulty:
difficulty_bucket: hard
tier: L2
axes_ratings:
precision_requirement: 1
target_acquisition: 4
density_choice_interference: 4
depth_layering: 2
feedback_dynamics: 2
semantic_observability: 3
disambiguation_load: 2
justification: Small trigger and compact, dense menu entries with similar labels increase acquisition difficulty and option
interference. Requires careful selection of the correct file extension.
success_trigger:
human_readable:
- A download is initiated for file_id=nested_menu_yaml with suggested filename "config-template.yaml".
- The download must come from selecting "Config template (.yaml)" in the menu.
canonical_predicate:
predicate_type: download_initiated
target_state:
file_id: nested_menu_yaml
filename: config-template.yaml
tolerance: null
require_confirm: false
confirm_control: null
require_correct_instance: false
target_instance_label_or_id: null
terminal_condition: true
negative_cases:
- Selecting "Config template (.json)" or any other menu item.
- Opening the menu but closing it without selecting an item.
- Any download event for a different file_id/filename.
expected_interaction_path: Click the templates ActionIcon menu opens click "Config template (.yaml)".