microsoft / html-reporter-for-axe-core-dotnet

HTML reporter for axe-core-dotnet
MIT License
4 stars 4 forks source link

Is there a way to display all the passes, incomplete and inapplicable? #29

Closed thisaja closed 1 year ago

thisaja commented 1 year ago

In the image below, when I click the links to passes, incomplete and inapplicable nothing shows up. Is there are way to display everything? image Below that is looks like it only shows the violations. image

IsaacWalker commented 1 year ago

Hi, yeah it's possible by using the ReportRuleTypes flagset enum:

AxeHTMLReportOptions options = new()
    {
        ReportRuleTypes = ReportRuleTypes.All
    };

    AxeHTMLReport report = reporter.CreateReport(axeResults, options);

...by default its just violations included.

I've created an issue to not show those links for RuleTypes which are not included here #31 .