Dev Genius

Coding, Tutorials, News, UX, UI and much more related to development

Follow publication

Developing UI with Testing in Mind

Andrey Enin
Dev Genius
Published in
7 min readMay 13, 2024
DALL-E 3 prompt: create a design system for a modern web interface with accessibility features, buttons, alerts, notifications, backdrops, hints, loaders, progress bars, and skeletons. Use a bright color palette with mesh gradients
DALL-E 3 prompt: create a design system for a modern web interface with accessibility features, buttons, alerts, notifications, backdrops, hints, loaders, progress bars, and skeletons. Use a bright color palette with mesh gradients

1. Providing a meaningful visual clue

On the left: something’s value is only color-coded; on the right: the icon has a title with the value, and the value is specified in the description
Fig. 1. On the left: something’s value is only color-coded; on the right: the icon has a title with the value, and the value is specified in the description

2. Do not hide the outline

The default outline
Fig 2. The default outline
/* It draws the focus ring around the button when the user navigates to it with the keyboard */
button:focus-visible {
outline: 2px solid #0069c2;
}

3. Enhancing interactive elements

[Yes] button changed color after hover, and the mouse shape has the pointer hand
Fig. 3. [Yes] button changed color after hover, and the mouse shape has the pointer hand

4. Feedback on user actions

Example of feedback Notification in Mantine components library
Fig. 4. Example of feedback Notification in Mantine components library

5. Implementing error handling from the backend

Example of React Alert in Material UI components library
Fig. 5.1. Example of React Alert in Material UI components library
Example of an alert with debug info
Fig. 5.2. Example of an alert with debug info

6. Closeable pop-ups and notifications

Example of Modal window in Material UI components library
Fig. 6. Example of Modal window in Material UI components library

7. Ensuring forms usability

Example of a form in Mantine components library. Required fields are marked, and the [Register] button is disabled, while required fields are empty
Fig. 7. Example of a form in Mantine components library. Required fields are marked, and the [Register] button is disabled, while required fields are empty

8. Maintaining visual stability

Avoid unintended jumps and shifts
Fig. 8. Avoid unintended jumps and shifts

9. Sticking to unambiguity

The obvious user flow: select an element → action under selected one
Fig. 9. The obvious user flow: select an element → action under selected one

10. Maintaining overall consistency

On the left: the [Read more] looks like a button but behaves as a link; on the right: «Read more» looks and behaves as a link
Fig. 10. On the left: the [Read more] looks like a button but behaves as a link; on the right: «Read more» looks and behaves as a link

11. Testability of elements

<Button
onClick={onOpenSmth}
variant="light"
title="Open something"
data-testid="button-open-smth"
>

Open
</Button>

12. Prioritizing accessibility features

Published in Dev Genius

Coding, Tutorials, News, UX, UI and much more related to development

Written by Andrey Enin

Quality assurance engineer: I’m testing web applications, APIs and do automation testing.

No responses yet

Write a response