We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c3391 commit 426d7d7Copy full SHA for 426d7d7
accessibility/scanner/index.js
@@ -229,11 +229,13 @@ if (overRideCommands) {
229
}
230
231
return cy.window().then((currentWindowNew) => {
232
+ Cypress.log({
233
+ name: command, // Display the passed command name
234
+ displayName: `Accessibility: ${command}`, // Change how it looks in the Cypress log
235
+ message: url,
236
+ });
237
+
238
return originalFn(url, options).then(() => {
- Cypress.log({
- name: command, // Ensure the correct command name is logged
- message: url,
- });
239
return processAccessibilityReport(url, currentWindowNew);
240
});
241
0 commit comments