Test Case: Admin > Extensions › Extensions > Catalog › Verify support type filters in extensions
Failure Message:
extensions.spec.ts:132:5 Verify support type filters in extensions" type="FAILURE">
[showcase] › e2e/extensions.spec.ts:132:5 › Admin > Extensions › Extensions > Catalog › Verify support type filters in extensions
TimeoutError: locator.click: Timeout 10000ms exceeded.
Call log:
- waiting for getByLabel('Support type').getByRole('button',
{ name: 'Open' }
)
Root Cause Analysis:
The root cause is an application-level error that prevented the plugins from loading, which caused the test to fail because the required 'Support type' filter UI element was never displayed. The screenshot shows the Extensions catalog page in an error state with a "No plugins found" message, which correlates to the test's inability to locate the filter button.
Actionable Recommendations:
1. Examine the browser's console logs from the test artifacts to identify any frontend errors that occurred when the Extensions page attempted to load.
2. Verify that the API endpoints responsible for providing plugin data are up and responding correctly in the test environment.
- links to