Skip to content

runner-axe not provide all the axe core results #168

@foxpcteam

Description

@foxpcteam

Hi,
after i have installed the runner-axe and run some tests i have noticed that i get not all the results that axe core provide.

for example, i have installed firefox axe add-on and i have test the same page. in the firefox add-on i get many issues. but when i run runner-axe i get only related to "contrast". am i missing something?

this is my code:

		const CrawlKit = require('crawlkit');
		const AxeRunner = require('crawlkit-runner-axe');	
		const crawler = new CrawlKit(website);
		// You could add a finder here in order to audit a whole network of pages 
		//crawler.addRunner('aXe', new AxeRunner());
		crawler.addRunner('aXe', new AxeRunner(), {
		  runOnly: {
			  type: 'tag',
			  values: ['wcag2aa']
			}
		});	 
		crawler.crawl()
			.then((data) => {
				res.send(JSON.stringify(data.results, true, 2));
			}, (err) => console.error(err));	

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions