ui
Verify user-provided scenarios in a browser using Browser MCP.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Verify user-provided scenarios in a browser using Browser MCP.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
| name | ui |
| description | Verify user-provided scenarios in a browser using Browser MCP. |
| alwaysApply | false |
Before executing scenarios, verify:
App is accessible at http://localhost:9000.
If not, ask the user to either:
minikube start
npm run start:dev
Browser MCP is available — if using Cursor prefer its built-in Browser Tab integration. If unavailable, inform the user how to enable it.
When additional steps are needed to execute the provided scenarios, consult the cypress/ folder for reusable patterns:
Find relevant e2e test cases and reuse steps from before methods.
Example of creating business services and stakeholders:
// cypress/e2e/tests/migration/applicationinventory/applications/create.test.ts
before("Login", function () {
login();
cy.visit("/");
businessservicesList = createMultipleBusinessServices(1);
stakeHoldersList = createMultipleStakeholders(2);
});
Find relevant page objects and reuse the steps inside their methods. Example of deleting an application:
// cypress/e2e/models/migration/applicationinventory/application.ts
delete(cancel = false): void {
Application.open();
clickItemInKebabMenu(this.name, "Delete");
if (cancel) {
cancelForm();
} else {
click(commonView.confirmButton);
}
}
| Path | Contents |
|---|---|
cypress/e2e/tests/ | E2e test suites organized by feature area |
cypress/e2e/models/ | Page objects with reusable interaction methods |