kiesraad / abacus

Abacus, software voor verkiezingsuitslagen en zetelverdeling
https://kiesraad-abacus.pages.dev
European Union Public License 1.2
19 stars 6 forks source link

Fix single progress bar #562

Closed jschuurk-kr closed 3 weeks ago

jschuurk-kr commented 3 weeks ago

This PR addresses two issues:

  1. 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.)
  2. 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.