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.
2 parents 9d2e630 + 6b1c282 commit ac58de3Copy full SHA for ac58de3
accessibility/scanner/index.js
@@ -227,14 +227,12 @@ if (overRideCommands) {
227
console.log('log', "Accessibility not enabled.");
228
return originalFn(url, options);
229
}
230
-
+ Cypress.log({
231
+ name: command, // Display the passed command name
232
+ displayName: `Accessibility: ${command}`, // Change how it looks in the Cypress log
233
+ message: url,
234
+ });
235
return cy.window().then((currentWindowNew) => {
- Cypress.log({
- name: command, // Display the passed command name
- displayName: `Accessibility: ${command}`, // Change how it looks in the Cypress log
- message: url,
236
- });
237
238
return originalFn(url, options).then(() => {
239
return processAccessibilityReport(url, currentWindowNew);
240
});
0 commit comments