The default class was not being set for the progress bar on the data entry page ("Voortang - Alles samen") due to the cls. This caused the progress bar to have no background-color, basically becoming invisible. (Fix by @oliver3, I just did the typing.)
The ProgressBar tests were checking for elements with role "label". However, that's not an ARIA role. Unfortunately the paramater for *ByRole() has type ByRoleMatcher, which means either an ARIARole or a string, so no help there.
This PR addresses two issues:
default
class was not being set for the progress bar on the data entry page ("Voortang - Alles samen") due to thecls
. This caused the progress bar to have no background-color, basically becoming invisible. (Fix by @oliver3, I just did the typing.)*ByRole()
has typeByRoleMatcher
, which means either anARIARole
or astring
, so no help there.