task_id
stringlengths 1
3
| task_description
stringlengths 18
356
| task_type
stringclasses 4
values | start_url
stringclasses 5
values | steps
stringclasses 18
values | require_login
bool 2
classes | eval
stringlengths 95
714
|
|---|---|---|---|---|---|---|
101
|
Add "Overnight Duffle" to comparison, then add "Strive Shoulder Pack" to comparison, and open the Compare Products page.
|
operation
|
__SHOPPING__
|
9
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__SHOPPING__/catalog/product_compare/", "dom_extractor": "document.querySelector('tbody').innerText", "match_type": "contains", "match_value": ["Strive Shoulder Pack", "Overnight Duffle"], "description": "Both compared products appear in the table"}}
|
102
|
Add a new shipping address: 55 Nguyen Van Cu Street, Ho Chi Minh City, 70000, Vietnam, with the phone number 0912345678, and set it as the default shipping address.
|
form
|
__SHOPPING__
|
14
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__LMS__/customer/address/", "dom": "document.querySelector('.box-address-shipping address')?.innerText", "match_type": "contains", "match_value": ["55 Nguyen Van Cu", "Ho Chi Minh", "70000", "Vietnam", "0912345678"]}}
|
103
|
Update the street of my default billing address to "2222 Sai Gon".
|
operation
|
__SHOPPING__
|
7
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__SHOPPING__/customer/address/edit/id/3/", "dom_extractor": "document.querySelector('#street_1').value", "match_type": "exact", "match_value": "2222 Sai Gon", "description": "Verify the street of the default billing address is updated to '2222 Sai Gon'."}}
|
104
|
Add a product review for "Didi Sport Watch" with a 4-star rating and a short comment.
|
operation
|
__SHOPPING__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('.message-success.success.message')?.innerText.trim()", "match_type": "exact", "match_value": "You submitted your review for moderation.", "description": "Verify review submission success message after adding a review for 'Didi Sport Watch'."}}
|
105
|
Print Order 000000008.
|
operation
|
__SHOPPING__
|
5
| true
|
{"eval_type": ["url_match"], "url_match": {"match_type": "exact", "match_value": "__SHOPPING__/sales/order/print/order_id/8/"}}
|
106
|
View details of the last Men’s Indoor Short.
|
operation
|
__SHOPPING__
|
5
| false
|
{"eval_type": ["url_match"], "url_match": {"match_type": "exact", "match_value": "__SHOPPING__/pierce-gym-short.html"}}
|
107
|
Empty the shopping cart and add three products: "Deirdre Relaxed-Fit", "Sylvia Capri", and "Aeon Capri" to cart
|
operation
|
__SHOPPING__
|
16
| false
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__SHOPPING__/checkout/cart/", "dom_extractor": "(() => { const items = [...document.querySelectorAll('#shopping-cart-table tbody.cart.item')]; const names = items.map(t => t.querySelector('.product-item-name a')?.innerText); return (items.length === 3 && names.includes('Deirdre Relaxed-Fit Capri') && names.includes('Sylvia Capri') && names.includes('Aeon Capri')) ? \"1\" : \"0\"; })()", "match_type": "exact", "match_value": "1", "description": "Verify the shopping cart contains exactly three items: Deirdre Relaxed-Fit Capri, Sylvia Capri, and Aeon Capri."}}
|
108
|
View the lowest-priced product detail page in Women > Pants.
|
lookup
|
__SHOPPING__
|
6
| false
|
{"eval_type": ["url_match"], "url_match": {"match_type": "contains", "match_value": "karmen-yoga-pant.html"}}
|
109
|
Find all products with keyword "short" priced between $40 and $42.
|
lookup
|
__SHOPPING_ADMIN__
|
7
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('.admin__control-support-text').innerText", "match_type": "exact", "match_value": "30 records found", "description": "Verify product search results for keyword 'short' priced between $40 and $42"}}
|
110
|
Navigate to Returns and Replacements service
|
lookup
|
__SHOPPING__
|
1
| false
|
{"eval_type": ["url_match"], "url_match": {"match_type": "exact", "match_value": "__SHOPPING__/customer-service"}}
|
111
|
Navigate to the default shipping address of customer "Veronica Costello."
|
lookup
|
__SHOPPING_ADMIN__
|
6
| true
|
{"eval_type": ["url_match", "dom_match"], "url_match": {"match_type": "contains", "match_value": "customer/index/edit/id/1"}, "dom_match": {"url": "last", "dom_extractor": "document.querySelector('.address-information.shipping-address .address_caption').innerText", "match_type": "exact", "match_value": "Default Shipping Address", "description": "Verify the caption of the default shipping address block for customer 'Veronica Costello'."}}
|
112
|
Update the approval status of rating "291" to 'Not Approved'.
|
operation
|
__SHOPPING_ADMIN__
|
7
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__SHOPPING_ADMIN__/review/product/edit/id/291", "dom_extractor": "document.querySelector('#status_id option:checked').innerText", "match_type": "exact", "match_value": "Not Approved", "description": "Verify selected review status equals 'Not Approved' for review ID 291."}}
|
113
|
Create a customer group named "Wholesale-10", then assign the customer "[email protected]" to this group.
.
|
form
|
__SHOPPING_ADMIN__
|
10
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "([...document.querySelectorAll('tbody tr')].some(r => r.cells[3]?.innerText.trim() === '[email protected]' && r.cells[4]?.innerText.trim() === 'Wholesale-10')) ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify there is a table row where Email = '[email protected]' and Group = 'Wholesale-10'."}}
|
114
|
Create a configurable product "Aether Gym Short" with attributes Size (S, M, L) and Color (Black, Gray), priced at $55.
|
form
|
__SHOPPING_ADMIN__
|
20
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "JSON.stringify(Array.from(document.querySelectorAll('table.admin__dynamic-rows.data-grid tbody tr.data-row')).map(r => r.querySelector('td[data-index=\"name_container\"] .control-table-text span[data-index=\"name_text\"]').innerText.trim()))", "match_type": "exact", "match_value": "[\"Aether Gym Short-Black-S\",\"Aether Gym Short-Black-M\",\"Aether Gym Short-Black-L\",\"Aether Gym Short-Gray-S\",\"Aether Gym Short-Gray-M\",\"Aether Gym Short-Gray-L\"]", "description": "Verify all 6 generated simple products for configurable item."}}
|
115
|
Enable Cash On Delivery Payment method
|
operation
|
__SHOPPING_ADMIN__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('#payment_us_cashondelivery_active').value", "match_type": "exact", "match_value": "1", "description": "Verify Cash On Delivery method is enabled (value=1)."}}
|
116
|
View the Coupons Report for the date range from March 10, 2025 to March 31, 2025.
|
lookup
|
__SHOPPING_ADMIN__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "((document.querySelector('.page-title')?.innerText.trim() === 'Coupons Report') && (document.querySelector('#sales_report_from')?.value.trim() === '3/10/25') && (document.querySelector('#sales_report_to')?.value.trim() === '3/31/25')) ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify the Coupons Report page is displayed and the date range is correctly set to March 10–31, 2025."}}
|
117
|
Show all products with color Lavender.
|
lookup
|
__SHOPPING_ADMIN__
|
10
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('.admin__control-support-text').innerText", "match_type": "exact", "match_value": "5 records found", "description": "show all products with color Lavender"}}
|
118
|
Show all female customers.
|
lookup
|
__SHOPPING_ADMIN__
|
6
| true
|
{"eval_type": ["url_match", "dom_match"], "url_match": {"match_type": "contains", "match_value": "customer/index/index"}, "dom_match": {"url": "last", "dom_extractor": "document.querySelector('.admin__control-support-text').innerText", "match_type": "exact", "match_value": "1 records found", "description": "Customer grid is filtered to show female customers."}}
|
119
|
Change the order status from "Suspected Fraud" to "Suspected Fraud (Untrusted)".
|
operation
|
__SHOPPING_ADMIN__
|
6
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "Array.from(document.querySelectorAll('table tbody tr')).find(r => r.querySelector('.col-status')?.innerText.trim() === 'fraud')?.querySelector('.col-label')?.innerText.trim()", "match_type": "exact", "match_value": "Suspected Fraud (Untrusted)", "description": "Verify the order status changed from 'Suspected Fraud' to 'Suspected Fraud (Untrusted)'."}}
|
120
|
Change the payment method name from "Bank Transfer Payment" to "Offline Bank Payment".
|
operation
|
__SHOPPING_ADMIN__
|
10
| true
|
{"eval_type": ["url_match", "dom_match"], "url_match": {"match_type": "contains", "match_value": ["admin/system_config/edit", "section/payment"]}, "dom_match": {"url": "last", "dom_extractor": "document.querySelector('#payment_us_banktransfer_title').value", "match_type": "exact", "match_value": "Offline Bank Payment", "description": "Verify the payment method name was updated."}}
|
121
|
Change the Admin Session Lifetime to 12 hours.
|
operation
|
__SHOPPING_ADMIN__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('#admin_security_session_lifetime').value", "match_type": "exact", "match_value": "43200", "description": "Verify Admin Session Lifetime is set to 12 hours (43200 seconds)."}}
|
122
|
Edit the status to "Not Approved" for the review with content "These looked really ugly on my feet…"
|
operation
|
__SHOPPING_ADMIN__
|
6
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__SHOPPING_ADMIN__/review/product/edit/id/299", "dom_extractor": "document.querySelector('#status_id option:checked').innerText", "match_type": "exact", "match_value": "Not Approved", "description": "Verify selected review status equals 'Not Approved' for review ID 299."}}
|
123
|
Create user "[email protected] ", set its manager to "[email protected] ", then open its Edit page.
|
form
|
__LMS__
|
10
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "(document.querySelector('#email')?.value === '[email protected]' && document.querySelector('#txtManager')?.value === 'qc ONE') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Ensure email and manager fields are correctly set for the newly created user."}}
|
124
|
Log in as employee using username "qc.lead.1" and password "Admin@123"
|
form
|
__LMS__
|
3
| false
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('ul.nav.pull-right a.brand')?.innerText.trim()", "match_type": "exact", "match_value": "qc ONE", "description": "Verify that the logged-in username 'qc ONE' is displayed in the top-right navigation bar."}}
|
125
|
Assign [email protected] as the manager of [email protected].
|
operation
|
__LMS__
|
6
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__LMS__/users/edit/3", "dom_extractor": "document.querySelector('#txtManager')?.value", "match_type": "exact", "match_value": "qc ONE", "description": "Verify that user ID 3 has manager 'qc ONE'."}}
|
126
|
Submit a two-day "Paid leave" request from Dec 6 to Dec 7, 2025, then open its edit page.
|
form
|
__LMS__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "(document.querySelector('input[name=\"startdate\"]')?.value === '06/12/2025' && document.querySelector('input[name=\"enddate\"]')?.value === '06/13/2025' && document.querySelector('select[name=\"type\"] option:checked')?.innerText.trim().toLowerCase() === 'paid leave') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify the two-day Paid leave request (Dec 6–7, 2025) is correctly shown in the edit page."}}
|
127
|
Submit a half-day 'Paid leave' request for the morning of January 16, 2026, and then open its detail page.
|
form
|
__LMS__
|
10
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "(document.querySelector('input[name=\"startdate\"]')?.value === '01/16/2026' && document.querySelector('input[name=\"enddate\"]')?.value === '01/16/2026' && document.querySelector('select[name=\"type\"] option:checked')?.innerText.trim().toLowerCase() === 'paid leave' && document.querySelector('select[name=\"enddatetype\"] option:checked')?.innerText.trim() === 'Morning') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify the half-day 'Paid leave' request for the morning of January 16, 2026 is correctly shown on the detail page."}}
|
128
|
View the list of submitted leave requests.
|
lookup
|
__LMS__
|
2
| true
|
{"eval_type": ["url_match"], "url_match": {"match_type": "exact", "match_value": "__LMS__/leaves"}}
|
129
|
Cancel the submitted Pending leave request on Oct 9
|
operation
|
__LMS__
|
3
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/leaves/leaves/1", "dom_extractor": "document.querySelector('select[name=\"status\"] option[selected]')?.innerText", "match_type": "exact", "match_value": "Canceled", "description": "Verify the leave request status is Canceled."}}
|
130
|
Approve a leave request for "pm ONE" on December 28.
|
operation
|
__LMS__
|
3
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/leaves/requests/12", "dom_extractor": "document.querySelector('select[name=\"status\"] option[selected]')?.innerText", "match_type": "exact", "match_value": "Accepted", "description": "Verify the leave request status is Accepted."}}
|
131
|
Reject all leave requests for December 25 and enter a comment indicating that the date is reserved for the wellness day.
|
operation
|
__LMS__
|
6
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/leaves/all", "dom_extractor": "Array.from(document.querySelectorAll('#leaves tbody tr')).filter(r => r.cells[2]?.innerText.includes('12/25/2025')).every(r => r.cells[6]?.innerText.trim() === 'Rejected') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify all leave requests for December 25, 2025 are marked as Rejected."}}
|
132
|
Filter pending leave requests by employee "employee FOUR"
|
lookup
|
__LMS__
|
4
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/requests", "dom_extractor": "(() => { const r=[...document.querySelectorAll('#leaves tbody tr')].filter(x=>x.offsetParent); return r.length && r.every(x=>x.cells[1]?.innerText.trim()==='employee FOUR') ? '1' : '0'; })();", "match_type": "exact", "match_value": "1", "description": "Verify that all displayed pending leave requests belong to employee FOUR."}}
|
133
|
Update a pending leave request to switch from paid leave to sick leave on September 12.
|
operation
|
__LMS__
|
7
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/leaves/leaves/15", "dom_extractor": "(document.querySelector('input[name=\"startdate\"]')?.value === '09/12/2025' && document.querySelector('input[name=\"enddate\"]')?.value === '09/12/2025' && document.querySelector('input[name=\"duration\"]')?.value === '1.000' && document.querySelector('select[name=\"type\"] option[selected]')?.innerText.trim() === 'Sick leave') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify the leave request on September 12, 2025 has the correct start date, end date, duration, and leave type updated to Sick leave."}}
|
134
|
Add an internal note to quotation S00002 saying 'Customer requests fast delivery'.
|
operation
|
__ERP__
|
3
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "last", "dom_extractor": "document.querySelector('.o-mail-Thread .o-mail-Message .o-mail-Message-body p')?.innerText", "match_type": "contains", "match_value": "Customer requests fast delivery", "description": "Verify that an internal note saying 'Customer requests fast delivery' was added to the quotation."}}
|
135
|
Create the product 'Ice Cream Vanilla' and assign it to the PoS category 'Food'.
|
form
|
__ERP__
|
6
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "last", "dom_extractor": "((document.querySelector('#name_0')?.value === 'Ice Cream Vanilla') && (document.querySelector('#categ_id_0')?.value === 'All / Saleable / PoS / Food')) ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify product name is exactly 'Ice Cream Vanilla' and PoS Category is exactly 'All / Saleable / PoS / Food'."}}
|
136
|
Change the manager of user = "[email protected]" to manager = "[email protected]".
|
operation
|
__LMS__
|
6
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/users/edit/3", "dom_extractor": "(document.querySelector('input[name=\"email\"]')?.value === '[email protected]' && document.querySelector('#txtManager')?.value.trim() === 'pm ONE') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify that the manager of user [email protected] is updated correctly."}}
|
137
|
Assign a 3-day compensate leave entitlement for "[email protected]" for full year 2025.
|
form
|
__LMS__
|
14
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/hr/counters/employees/3", "dom_extractor": "([...document.querySelectorAll('#entitleddaysemployee tbody tr')].some(r => r.cells[0]?.innerText.trim()==='01/01/2025' && r.cells[1]?.innerText.trim()==='12/31/2025' && r.cells[2]?.innerText.trim()==='3.00' && r.cells[3]?.innerText.trim()==='compensate')) ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify a 3-day compensate leave entitlement was added for full year 2025."}}
|
138
|
Change the login username of "[email protected]" to "developer4".
|
operation
|
__LMS__
|
6
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/users/edit/4", "dom_extractor": "(document.querySelector('input[name=\"email\"]')?.value === '[email protected]' && document.querySelector('input[name=\"login\"]')?.value === 'developer4') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify that the login username for [email protected] is updated to developer4."}}
|
139
|
Submit a 3-hour overtime request for Dec 31, 2025 with the reason 'Regression testing after bug fixing'.
|
operation
|
__LMS__
|
10
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "last", "dom_extractor": "[...document.querySelectorAll('table tbody tr')].some(r => r.cells[1]?.innerText.trim() === '12/31/2025' && r.cells[2]?.innerText.trim() === '0.375' && r.cells[3]?.innerText.trim() === 'Regression testing after bug fixing') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify the overtime request (0.375 day = 3 hours) on Dec 31 2025 with correct reason exists."}}
|
140
|
Delete the account of user "[email protected]".
|
operation
|
__LMS__
|
4
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/users/edit/6", "dom_extractor": "document.querySelector('#email') ? '0' : '1'", "match_type": "exact", "match_value": "1", "description": "Verify that the user [email protected] no longer exists and the email field is not present."}}
|
141
|
Update the email of user "[email protected]" to "[email protected]".
|
operation
|
__LMS__
|
6
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/users/edit/7", "dom_extractor": "document.querySelector('#email')?.value", "match_type": "exact", "match_value": "[email protected]", "description": "Verify the updated email value for this user."}}
|
142
|
Change the position of user "[email protected]" from Employee to Manager.
|
operation
|
__LMS__
|
6
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/users/edit/4", "dom_extractor": "document.querySelector('#txtPosition')?.value", "match_type": "exact", "match_value": "Manager", "description": "Verify the user's position is updated to Manager."}}
|
143
|
Grant administrator rights to "[email protected]".
|
operation
|
__LMS__
|
5
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/users/edit/10", "dom_extractor": "document.querySelector('select[name=\"role[]\"] option[value=\"1\"]')?.selected ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify that administrator role is selected."}}
|
144
|
Reject the leave request submitted by the user "pm ONE" for December 10, adding a comment indicating insufficient balance.
|
operation
|
__LMS__
|
5
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/leaves/requests/14", "dom_extractor": "document.querySelector('select[name=\"status\"] option[selected]')?.innerText", "match_type": "exact", "match_value": "Rejected", "description": "Verify the leave request is marked as Rejected."}}
|
145
|
Edit the leave date from "September 9" to "September 11".
|
operation
|
__LMS__
|
9
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/leaves/leaves/5", "dom_extractor": "(document.querySelector('input[name=\"startdate\"]')?.value === '09/11/2025' && document.querySelector('input[name=\"enddate\"]')?.value === '09/11/2025' && document.querySelector('input[name=\"duration\"]')?.value === '1.000' && document.querySelector('select[name=\"type\"] option[selected]')?.innerText.trim().toLowerCase() === 'paid leave') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify the leave request was updated to Sept 11, 2025 with duration 1.000 and type Paid Leave."}}
|
146
|
Set the default time zone of user [email protected] to Asia/Ho_Chi_Minh.
|
operation
|
__LMS__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/users/edit/2", "dom_extractor": "document.querySelector('#select2-timezone-container')?.innerText", "match_type": "exact", "match_value": "Asia/Ho_Chi_Minh", "description": "Verify that the user's default time zone is set to Asia/Ho_Chi_Minh."}}
|
147
|
Grant a 12-day "Paid Leave" entitlement to "[email protected]" for the full year 2025.
|
operation
|
__LMS__
|
12
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/hr/counters/employees/3", "dom_extractor": "([...document.querySelectorAll('#entitleddaysemployee tbody tr')].some(r => r.cells[0]?.innerText.trim()==='01/01/2025' && r.cells[1]?.innerText.trim()==='12/31/2025' && r.cells[2]?.innerText.trim()==='12.00' && r.cells[3]?.innerText.trim()==='paid leave')) ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify a 12-day Paid Leave entitlement is granted for full year 2025."}}
|
148
|
Create a new department named "Accountant", then assign user "[email protected]" to this department
|
operation
|
__LMS__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/users/edit/9", "dom_extractor": "document.querySelector('#txtEntity')?.value", "match_type": "exact", "match_value": "Accountant", "description": "Verify that the user's department is set to Accountant."}}
|
149
|
Create a new position named "Internship" and change position of user "internship2" to internship
|
operation
|
__LMS__
|
10
| true
|
{"eval_type": ["dom_match"], "dom_match": {"type": "dom_match", "url": "__LMS__/users/edit/7", "dom_extractor": "document.querySelector('#txtPosition')?.value", "match_type": "exact", "match_value": "Internship", "description": "Verify that the user's position is set to Internship."}}
|
150
|
Display all my leave requests currently marked as Requested.
|
lookup
|
__LMS__
|
8
| true
|
{"eval_type": ["url_match", "dom_match"], "url_match": {"type": "url_match", "match_type": "exact", "match_value": "__LMS__/leaves"}, "dom_match": {"type": "dom_match", "url": "last", "dom_extractor": "([...document.querySelectorAll('tbody tr')].every(r => r.cells[6]?.innerText.trim() === 'Requested')) ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify that all displayed leave requests are marked as Requested."}}
|
151
|
Set a yearly cap of 5 days for 'paternity leave' for all employees in this full year
|
operation
|
__LMS__
|
14
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__LMS__/requests/balance", "dom_extractor": "[...document.querySelectorAll('#balance tbody tr')].every(r => r.cells[[...document.querySelectorAll('#balance thead th')].findIndex(th => th.innerText.trim() === 'paternity leave')]?.innerText.trim() === '5') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify that the paternity leave yearly cap is set to 5 days for all employees"}}
|
152
|
Create a 'Sick leave' request for employee '[email protected]' on Jan, 3 2026
|
form
|
__LMS__
|
10
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__LMS__/hr/leaves/2", "dom_extractor": "[...document.querySelectorAll('tbody tr')].some(r => r.innerText.includes('01/03/2026') && r.innerText.includes('Sick leave')) ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify that a Sick leave request exists on 01/03/2026"}}
|
153
|
Create a new product attribute named "Fabric" using Dropdown as the Catalog Input Type, with the options Cotton, Wool, and Polyester. After saving, reopen the attribute and review its properties.
|
operation
|
__SHOPPING_ADMIN__
|
12
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "return (() => { const values = [...document.querySelectorAll('#manage-options-panel tbody input[name^=\"option[value]\"][name$=\"[0]\"]')].map(i => i.value.trim()); const expected = ['Cotton','Wool','Polyester']; return (values.length === 3 && expected.every(v => values.includes(v))) ? '1' : '0'; })();", "match_type": "exact", "match_value": "1", "description": "Verify the attribute contains exactly three options: Cotton, Wool, Polyester"}}
|
154
|
Create a customer group named "Wholesale-5" and create a catalog price rule that applies a 5% discount to this customer group. After saving, reopen this catalog price rule, expand the Actions section, and review the customer group and discount details.
|
operation
|
__SHOPPING_ADMIN__
|
14
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "(() => { const simpleAction = document.querySelector('select[name=\"simple_action\"]')?.value; const discountAmount = document.querySelector('input[name=\"discount_amount\"]')?.value || ''; const selectedGroups = [...document.querySelector('select[name=\"customer_group_ids\"]')?.selectedOptions || []].map(o => o.textContent.trim()); return (simpleAction === 'by_percent' && discountAmount.includes('5') && selectedGroups.includes('Wholesale-5')) ? '1' : '0'; })()", "match_type": "exact", "match_value": "1", "description": "Verify discount rule uses by_percent, discount amount contains 5, and Wholesale-5 customer group is selected"}}
|
155
|
Create a new attribute set named "CustomSet01" based on the Default attribute set. Then add the unassigned attribute "color" to this attribute set under the Product Details group. After saving, reopen this attribute set and review its details.
|
operation
|
__SHOPPING_ADMIN__
|
12
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "(() => document.querySelector('input[name=\"attribute_set_name\"]')?.value?.trim() === 'CustomSet01' && [...document.querySelectorAll('li')].some(li => li.textContent.includes('Product Details') && li.textContent.toLowerCase().includes('color')) ? '1' : '0')()", "match_type": "exact", "match_value": "1", "description": "Verify attribute set name is CustomSet01 and Color exists under Product Details"}}
|
156
|
Create a new admin user with the email "[email protected]
". In the Current User Identity Verification section, enter the current admin password "Admin@123" to confirm the action.
|
operation
|
__SHOPPING_ADMIN__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "(() => [...document.querySelectorAll('tbody tr')].some(tr => tr.querySelector('[data-column=\"email\"]')?.textContent.trim() === '[email protected]' && tr.querySelector('[data-column=\"role_name\"]')?.textContent.trim() === 'Administrators') ? '1' : '0')()", "match_type": "exact", "match_value": "1", "description": "Verify the new admin user with email [email protected] appears in the Users grid and has Administrators role"}}
|
157
|
Create a new CMS block named "Homepage Promo Banner" with identifier "homepage-promo-banner". Set the content HTML to "<p>Spring Sale Up to 30%</p>". After saving, reopen this CMS block and review its details.
|
form
|
__SHOPPING_ADMIN__
|
12
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('.placeholder-html-code')?.innerText.trim()", "match_type": "contains", "match_value": "Spring Sale Up to 30%", "description": "Verify PageBuilder HTML content contains 'Spring Sale Up to 30%'"}}
|
158
|
Refresh the lifetime statistics for all reports, then view the Invoice Report for the date range from March 10, 2025 to March 31, 2025.
|
lookup
|
__SHOPPING_ADMIN__
|
18
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "((document.querySelector('#sales_report_from')?.value.trim() === '3/10/25') && (document.querySelector('#sales_report_to')?.value.trim() === '3/31/25') && [...document.querySelectorAll('tr.totals')].some(r => r.cells[1]?.innerText.trim() === '2' && r.cells[3]?.innerText.trim() === '$76.03')) ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify invoice report for March 10–31, 2025 has total orders = 2 and total invoiced = $76.03."}}
|
159
|
Create an API integration named "CatalogAPIOnly" with email "[email protected]" and confirm password "Admin@123".
Grant access to Catalog API resources only, then open the integration details to review API Resources.
|
operation
|
__SHOPPING_ADMIN__
|
10
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "[...document.querySelectorAll('tbody tr')].some(tr => tr.querySelector('[data-column=\"name\"]')?.innerText.trim() === 'CatalogAPIOnly') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify there is an API integration named CatalogAPIOnly"}}
|
160
|
Open the Customers Orders Total report and verify the order total value on March 21, 2025.
|
operation
|
__SHOPPING_ADMIN__
|
10
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('tfoot [data-column=\"orders_sum_amount\"]')?.innerText.trim()", "match_type": "contains", "match_value": "29", "description": "Verify total order amount is $29.00"}}
|
161
|
Create a new bug in project 'Demo-Project' with subject 'Homepage Banner Not Loading', and assign it to 'Agent Merkle'.
|
operation
|
__PROJECT__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('h2')?.innerText.includes('Bug') && document.querySelector('.assigned-to .value')?.innerText.includes('Agent Merkle') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify the issue is a Bug and assigned to Agent Merkle"}}
|
162
|
Change the priority of issue #1 in project 'Demo-Project' to 'Urgent'.
|
operation
|
__PROJECT__
|
7
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__PROJECT__/issues/1", "dom_extractor": "document.querySelector('.priority .value')?.innerText.trim()", "match_type": "exact", "match_value": "Urgent", "description": "Verify issue priority is exactly Urgent"}}
|
163
|
Log 4 hours and 30 minutes of time to issue #1 in the 'Demo-Project' project with the activity 'Development'.
|
operation
|
__PROJECT__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__PROJECT__/projects/demo-project/time_entries", "dom_extractor": "[...document.querySelectorAll('tbody tr')].some(tr => tr.querySelector('td.issue')?.innerText.includes('Bug #1') && tr.querySelector('td.activity')?.innerText.trim() === 'Development' && tr.querySelector('td.hours')?.innerText.trim() === '4:30') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify there is a time entry for Bug #1 with activity Development and logged time 4:30"}}
|
164
|
Update the % Done of the time entry for issue #1 in 'Demo-Project' to 50%.
|
operation
|
__PROJECT__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__PROJECT__/issues/1", "dom_extractor": "document.querySelector('.progress .percent')?.innerText.trim()", "match_type": "exact", "match_value": "50%", "description": "Verify % Done of issue #1 is updated to 50%"}}
|
165
|
Create a new tracker named 'Security Bug' and enable it for all projects.
|
operation
|
__PROJECT__
|
7
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__PROJECT__/trackers", "dom_extractor": "[...document.querySelectorAll('table.trackers tbody tr')].some(tr => tr.querySelector('td.name')?.innerText.trim().toLowerCase() === 'security bug') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify there is a tracker named Security Bug"}}
|
166
|
Create a new time tracking activity named 'Bug Fixing'.
|
operation
|
__PROJECT__
|
5
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "__PROJECT__/enumerations", "dom_extractor": "[...document.querySelectorAll('table.enumerations tbody tr')].some(tr => tr.querySelector('td.name')?.innerText.trim() === 'Bug Fixing') ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify there is a time tracking activity named Bug Fixing"}}
|
167
|
Update my Date of Birth to Dec 31, 2000 and then save the changes, and verify the updated value
|
operation
|
__ERP__
|
6
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('input[data-field=\"birthday\"]')?.value", "match_type": "exact", "match_value": "12/31/2000", "description": "Verify Date of Birth is updated to Dec 31, 2000"}}
|
168
|
Add and enable custom checkbox 'Allow Remote Work' for employee Anita Olivier and save the changes
|
operation
|
__ERP__
|
10
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "[...document.querySelectorAll('.o_property_field')].some(f => f.querySelector('label span')?.innerText.trim() === 'Allow Remote Work' && f.querySelector('input[type=\"checkbox\"]')) ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Verify the property 'Allow Remote Work' exists and is a checkbox"}}
|
169
|
Mark the opportunity 'Modern Open Space' as Lost with reason "Budget Issue"
|
operation
|
__ERP__
|
8
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('.o_widget_web_ribbon .ribbon-top-right span')?.innerText.trim() === 'LOST' && document.querySelector('input[id^=\"lost_reason_id\"]')?.value.trim() === 'Budget Issue' ? '1' : '0'", "match_type": "exact", "match_value": "1", "description": "Opportunity is marked as LOST and Lost Reason is Budget Issue"}}
|
170
|
Navigate to the Lost opportunities list
|
operation
|
__ERP__
|
5
| true
|
{"eval_type": ["dom_match"], "dom_match": {"url": "last", "dom_extractor": "document.querySelector('.o_searchview_facet .o_facet_value')?.innerText.trim()", "match_type": "exact", "match_value": "Lost", "description": "Lost opportunities list is displayed"}}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.