microsoft / contosotraders-cloudtesting

The Contoso Traders app is a sample application showcasing Playwright, Azure Load Testing, Azure Chaos Studio.
https://cloudtesting.contosotraders.com
MIT License
159 stars 316 forks source link

Missing 'product not found' error #202

Closed annasoracco closed 1 year ago

annasoracco commented 1 year ago

Describe the bug A clear and concise description of what the bug is.

To Reproduce Steps to reproduce the behavior:

  1. Go to any existing product detail page
  2. Add additional digits to product sku number in URL
  3. site continues to cycle (no error message)

image

Expected behavior "Product not found" or similar generic message.

Screenshots If applicable, add screenshots to help explain your problem.

mithunshanbhag commented 1 year ago

For an invalid productID, the API is rightly returning a 404.

image

However, the UI doesn't seem to have a handler for this error.

image

This is the line of code in question.

image

Can you add a handler to redirect to the 404 page?

mithunshanbhag commented 1 year ago

Resolved with https://github.com/microsoft/contosotraders-cloudtesting/pull/205