Update Your Build Status

Link to Update Your Build Status copied to clipboard
Not for use with personal data

Reveal and resolve accessibility issues earlier in your software development life cycle by integrating axe DevTools Mobile in your CI/CD pipeline. Find accessibility issues by running a scan and handling the results. Fail tests when issues are found, and fail builds to keep these issues from being merged with your production code. The code snippet below shows an example of how you would fail a build when accessibility issues are found in your scan results.

    // 1. Scan and save the results object
    let result = try axe.run(onElement: XCUIApplication())
    // 2. Fail the build if accessibility issues are found
    XCTAssertEqual(result.failures.count, 0)