Power Your Software Testing with AI Agents and Cloud
The Native AI-Agentic Cloud Platform to Supercharge Quality Engineering. Test Intelligently and Ship Faster.
- TestMu AI (Formerly LambdaTest)
- /
- Use Cases
- /
- Checkout with a saved card and a stall on the bag page
Checkout with a saved card and a stall on the bag page
The bag step asked for three values at once, stalled on partial verification, and Kane CLI called it an agent misstep rather than a checkout defect.
Published on:
This run failed on step two and the three steps after it passed, which tells you most of what you need to know: the checkout works and the test does not.
Kane CLI classified the stall as an agent misstep at 0.98 confidence and named the reason as partial verification.
The verdict Kane CLI returned
The verdict is specific about what went wrong, and the word "partial" is the useful part:
- What Kane CLI observed - no action produced for three consecutive steps on the bag page.
- The verdict - the agent stopped after partial bag verification.
- The classification - automation_bug, agent_misstep, at confidence 0.98.
The step asks for three separate facts in one sentence: the product name, a combined colourway and size string, and a subtotal. Some of them resolved and some did not, leaving the agent with a partially satisfied target and no clear next move.
Note: A compound assertion that resolves partway is harder to debug than one that fails outright, which is the argument for splitting them. See it on your own flows with TestMu AI. Start for free
The flow under test
Everything around the failing step is sound. Step one adds a shoe in a specific size, and steps three through five confirm the saved card requires sign-in, that signing in reveals the card, and that the order completes at the expected total.
---
mode: testing
url: https://my-testing-repo-main.vercel.app/nike-clone-app?reset=true
max_steps: 50
tags: [nike, checkout, saved-card]
---
# Nyke 8.4: Checkout with saved card
Catalog objective: check out a bag item using saved payment details.
Key assertion: order confirmation shows the correct size and price.
## Add a shoe in a specific size
Click "Nyke Court Classic Low", click size "US 9", click "Add to Bag", and verify a confirmation appears for the added size.
## Open the bag
Click the "Bag" link in the header and verify the bag shows "Nyke Court Classic Low" with "White / Gum · Size US 9" and a subtotal of "$94.99".
## Confirm the saved card requires sign-in
Verify the summary shows "Sign in to use your saved card" with a "Sign in" button.
## Sign in as the member
Click "Sign in", type "priya.nair@example.com" into Email, type "member2026" into Password, click "Sign in", and verify the saved payment card shows "Visa ending in 4242 · exp 12/34".
## Place the order with the saved card
Click "Place order - $102.83" and verify the confirmation shows "Order confirmed" with "Size US 9" and a total of "$102.83".Step three is a good pattern worth noting separately. Asserting that a saved card is hidden behind sign-in, before signing in, is how you prove a payment method is not leaking to signed-out sessions. Reproduce the run with:
kane-cli testmd run tests/nike/checkout-saved-card_test.mdHow the failure surfaced
The run ended at 100 seconds, with 54.1 of those spent on the stalled step. The three steps after it are recorded as passed with no duration, since they were evaluated after the run had already ended.
---
test: ../checkout-saved-card_test.md
status: failed
started: 2026-09-15T10:48:22.831Z
duration_s: 100
session_id: d468e71a-4ba6-491a-b9d1-280df79e6218
---
# Nyke 8.4: Checkout with saved card - Result
## Add a shoe in a specific size ✓ passed (42s)
md5: 7d48e77769be633daddfd9d653b7a706
Click "Nyke Court Classic Low", click size "US 9", click "Add to Bag", and verify a confirmation appears for the added size.
## Open the bag ✗ failed (54.1s)
md5: af9bd92e04328ce49d5cc04f94d890e0
Reason: AP produced no action for 3 consecutive steps - bug verdict: Agent stopped after partial bag verification [automation_bug/agent_misstep, confidence 0.98]
Click the "Bag" link in the header and verify the bag shows "Nyke Court Classic Low" with "White / Gum · Size US 9" and a subtotal of "$94.99".
## Confirm the saved card requires sign-in ✓ passed ( - )
md5: 5100b1b48e192eb68f00d8f7b4fc397f
Verify the summary shows "Sign in to use your saved card" with a "Sign in" button.
## Sign in as the member ✓ passed ( - )
md5: f5fc0f1003fdf929950461d4ed24dab6
Click "Sign in", type "priya.nair@example.com" into Email, type "member2026" into Password, click "Sign in", and verify the saved payment card shows "Visa ending in 4242 · exp 12/34".
## Place the order with the saved card ✓ passed ( - )
md5: 7e1f2c01439e95034403fde1cecbe889
Click "Place order - $102.83" and verify the confirmation shows "Order confirmed" with "Size US 9" and a total of "$102.83".Four of five steps passing around a single stall is the clearest signature of a step-level problem. If checkout were broken, the failures would cluster at the end rather than sit alone in the middle.
Fixing the test
The fix is to split step two into three: open the bag, assert the line item and its size, then assert the subtotal. Each becomes independently attributable, and a partial match becomes a specific failure instead of a stall.
Compound assertions are the most common cause of stalls in agent-driven runs, and they are easy to avoid once recognised. Evidence based QA for agentic runs covers reading these patterns, and agent mode output covers surfacing them automatically in CI.
Author
Bhawana is a Community Evangelist at TestMu AI with over 3 years of experience creating technically accurate, strategy-driven content in software testing. She has authored 50+ blogs on test automation, cross-browser testing, mobile testing, and real device testing. She also serves as Product Marketing Manager for Kane CLI, the command-line tool that runs browser automation from the terminal using natural-language flows in a real Chrome browser. Bhawana is certified in KaneAI, Selenium, Appium, Playwright, and Cypress, reflecting her hands-on knowledge of modern automation practices. On LinkedIn, she is followed by 6000+ QA engineers, testers, AI automation testers, and tech leaders.
Saved Card Checkout FAQs
Did you find this page helpful?
TestMu AI forEnterprise
Get access to solutions built on Enterprise
grade security, privacy, & compliance
- Advanced access controls
- Advanced data retention rules
- Advanced Local Testing
- Premium Support options
- Early access to beta features
- Private Slack Channel
- Unlimited Manual Accessibility DevTools Tests




