You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 19, 2023. It is now read-only.
I'm a screen reader user and I found issues when running the test runner for Windows universal. The issue is that list items accessibility name are set to the model class's full type name.
Fortunately there is a simple way of solving this. You need to override ToString method on all view models you render in observable collections.
Details:
TestAssemblyViewModel: You need to render the display name and all other information you render as graphical sections in every list item as a string.
TestCaseViewModel: Just render the display name, if it was failed or succeeded and how much time it took.
I assume that the TestResultViewModel object is rendered as various labels in its own page, so it is not needed.
Considerations:
Please try to render compact strings as they are read by screen readers and long strings takes much time to be read.
Thanks,
The text was updated successfully, but these errors were encountered:
Hello,
I'm a screen reader user and I found issues when running the test runner for Windows universal. The issue is that list items accessibility name are set to the model class's full type name.
Fortunately there is a simple way of solving this. You need to override ToString method on all view models you render in observable collections.
Details:
TestAssemblyViewModel
: You need to render the display name and all other information you render as graphical sections in every list item as a string.TestCaseViewModel
: Just render the display name, if it was failed or succeeded and how much time it took.I assume that the
TestResultViewModel
object is rendered as various labels in its own page, so it is not needed.Considerations:
Please try to render compact strings as they are read by screen readers and long strings takes much time to be read.
Thanks,
The text was updated successfully, but these errors were encountered: