I am trying to integrate accessibility tests with a my automation tests. I ran a basic tests with tags wcag21aa and wcag2aa. However test results shows me passes from only 2 rule i.e. "color-contrast" and "Inline text spacing must be adjustable with custom stylesheets", even though I have not defined any rule in the run.
AxeResult axeResult = new AxeBuilder(webDriver)
.WithTags("wcag2a","wcag21aa")
.Analyze();
How can I get the complete report having all the rules which passed