Can reports exclude issues where impact is minor? #232
-
Hi I'm running a report on web pages specifying the tags needed and then focusing on the 2 report types I am interested in: var builder = new AxeBuilder(driver).WithTags("wcag2a", "wcag2aa", "wcag21a", "wcag21aa"); This gives me a list of all the issues, but I'd also like to be able to ignore where impact = minor, so that the output report only contains critical and serious issues. Is this possible? I've read through the Selenium.Axe for .NET page but couldnt find anything. Thanks, Steve |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is a feature that should be added to Axe.Core first. |
Beta Was this translation helpful? Give feedback.
This is a feature that should be added to Axe.Core first.
In the short term you could get the results as a JSON file, remove unwanted impacts, and then load that JSON result.