axe DevTools Mobile June 26, 2024 Release Notes

Link to axe DevTools Mobile June 26, 2024 Release Notes copied to clipboard

June 26, 2024

Free Trial

Component Versions

  • Appium Plugin (v2.2.0)
  • iOS SDK & Analyzer (axeDevToolsXCUI v2.12.0)
  • Android SDK (axe-devtools-android v5.5.1)
  • Android Analyzer (axe Accessibility Analyzer v1.8.1)
    How to update: iOS SDK, iOS Analyzer, Android SDK, Android Analyzer

What's New?

Appium

  • New Rules: We added WCAG 2.2 support with the Touch Target Spacing rule for iOS and Android. We also added the Edit Text Value rule for Android.
  • More control type support in rules on iOS: We now support controls beyond just buttons for all rules.
  • Usage Service: If your team uses the usage service to track axe DevTools Mobile tool usage, Appium data will now be included.

iOS

  • The minimum supported iOS version has been increased to iOS 15.
  • After previous deprecation notices, the Colliding Controls rule will no longer run in favor of the Touch Target Spacing rule which covers colliding controls as well as target size.

Fixes

Android

  • Enhancements and improvements to increase accuracy and reduce false positives in the following rules: Active View Name, Touch Target Size, Label In Name and Label In Front.
  • Improved identification and rule results for off-screen, or partially off-screen views.

iOS

  • Improved the Active Control Name rule to ensure a better accessibility experience for your end users when using the stepper control.
  • Enhancements and improvements to increase accuracy and reduce false positives and negatives in the following rules: Active Control Name, Image View Name and Label At Front.

Appium

  • The Touch Target Size rule on Android will now run on any clickable element no matter its focusability.

Known Issues

If you're experiencing any of the below issues, please contact us at helpdesk@deque.com or support.deque.com. We will then be able to notify you once it's resolved or of an identified workaround if none is listed.

important
  • axe DevTools Mobile automated testing runs on native iOS, native Android, and React Native applications. Please contact your Deque representative for accessibility testing solutions on your tech stack.
  • While you may get some results from web views or rendered PDFs, we highly recommend testing using axe DevTools for Web or axe Monitor for the most comprehensive accessibility testing for the web.

axe DevTools Mobile for iOS

Error in Analyzer Project & Testing by Bundle ID in 2.8.1

Functionality with testing an application by bundle identifier was broken in version 2.8.1 which resulted in an error titled "No target application path specified via test configuration: ...". Update to 2.8.2 or the latest version to resolve the error. Update to the latest within the iOS Analyzer project.

Views off-screen may show results for SwiftUI apps tested in iOS 17

With version 2.8.0 (View Release Notes), results are no longer reported on views that are not visible, including off-screen or hidden by another view. We've discovered in SwiftUI applications being tested in iOS 17, some results still show. (#1383)

Supports Dynamic Type rule not working with iOS 15 Pro simulator

There is an issue affecting the iPhone 15 Pro simulator that prevents the Supports Dynamic Type rule from running. If you are opted in to the Supports Dynamic Type rule, you will not be able to test it using an iPhone 15 Pro simulator. A bug has been filed with Apple.

Rules against Nested Controls

While looking at an improvement for our rules, we found that in XCTest, nested controls are not returned in the accessibility tree. A bug has been filed with Apple. (#1110)

ImageView Name Rule Needs Review Results for UIKit Apps

In UIKit apps, an image without an `accessibilityLabel` is not focusable with assistive technology by default.
The properties we use to check focusability from Apple may be inaccurate when an `accessibilityIdentifier` is set on the image. Due to this unexpected behavior, results for ImageView Name issues in UIKit apps will report as Needs Review. A bug report has been filed with Apple. (#1633)

False Positive: In Scroll View, Label In Name, Label at Front, and v2.11.0 Image View Name & ActiveControlName


We are actively working on fixes for the following false positives and will update this list as fixes are released.

In Scroll View
May report issues for text within banner-behaving elements. To make these elements available to those that require larger text, use UILargeContentViewer. (#622)

v2.11.0 Image View Name & ActiveControlName
If an UIImageView has an `accessibilityIdentifier` set but is not focusable by VoiceOver, and it has focusable controls nested within it, ActiveControlName may report a false positive on the UIImageView. Removing the `accessibilityIdentifier` resolves the issue. A bug has been filed with Apple. (#1633)

Label In Name and Label At Front
These two rules look for a control's visible label amongst nearby elements to help determine rule status. In some view hierarchies, the incorrect nearby text may be detected causing these rules to fail. (#1622)

axe DevTools Mobile for Android

Crash when `minifiedEnabled` is set to true

If minifying your build, you'll see a crash with an error log reporting an adapter could not be found when trying to login to the axe DevTools library. Disable minify for your debug builds with axe DevTools implemented. (#729)

Builds with r8 enabled throw an error

A build with r8 enabled may attempt to minify the axeDevTools library resulting in an error similar to:

Caused by: java.lang.NullPointerException: throw with null exception
at g.b.b.a$a.a(Unknown Source:1)
at g.b.b.a$a.a(Unknown Source:0)
at g.b.b.a.a(AccessToken.java:190)
	
To resolve this error add the following line to your ProGuard file to keep axeDevTools classes:
keep class com.deque.** { *; }

Error message similar to:
Expected exactly '1' node but found '2' nodes that satisfy: (isRoot)
or: No View initialized, did you call AxeDevToolsCompose.setComposeTestRule()?

If you encounter an error along the lines of `Expected exactly '1' node but found '2' nodes that satisfy: (isRoot)` or `No View initialized, did you call AxeDevToolsCompose.setComposeTestRule()?`, please refer to Compose setTestTag API.

axe DevTools Mobile Dashboard

Missing Screenshot

If the screenshot is missing from the scan details page, your app may be preventing screenshots from being taken. Often this is for security reasons in your production application. Consider removing this requirement for your testing build to allow for full functionality in the axe DevTools Mobile Dashboard.

Some Android scan names are unformatted

Some Android scan names that are defaulted to the screen title will appear as the full class name including the bundle identifier. In a future release, this will be resolved so that the screen title is formatted into a more readable name. As a workaround, you can set the scan name from the dashboard or frameworks. (#1643)

axe DevTools Mobile for Appium

False Positives: Active View Name, Touch Target Spacing


We are actively working on fixes for the following false positives and will update this list as fixes are released.

Active View Name
Due to limitations in information available via the Appium platform, we've identified a false positive for Active View Name when using the labeledBy property to provide a label for a button element.

Touch Target Spacing on iOS platform for SwiftUI & React Native apps
Larger controls may fail Touch Target Spacing when they are greater than the minimum 24pt x 24pt requirement. (#411)

False Negative: Inaccessible Action on Android React Native


You may see contradictory results for this new rule when scanning React Native apps on the Android platform. Some views will have a nested button element resulting in a failure for the parent button, but a pass in the child button. (#407)

React Native: Label In Name & Label At Front

Due to limitations in information available via the Appium platform, we've identified the Label In Name & Label At Front rules aren't able to run for apps built with React Native. We are exploring solutions and expect a fix in a future release.

React Native & .NET MAUI: Inspect View Hierarchy Showing Past Screen

Sometimes the Appium page source property needs extra time to get updated between scans. If this happens, you'll see a previous screen's view hierarchy when using the inspect feature on the dashboard. To fix, add a small timeout before calling the page source API to prompt the accessibility scan. Example:

			await driver.pause(1000);
    		const result = await driver.getPageSource();
		

Limitation: Image View Name for Decorative Images in Android

Due to limitations in information available via the Appium platform, we've identified the Image View Name rule is unable to accurately test for decorative image success criteria in Android. Results for images without an accessible name will display as 'Needs Review' in the dashboard for further analysis.