How to Implement Script with Browser_mod Actions?

Can’t seem to get this to work. Trying to implement a dashboard targeted for an Android tablet, I need it to continuously cycle between three (or more) dashboard views every few seconds. Code below. I can fire it and it switches to the first dashboard, but that’s it. I look at the trace, and if I’m interpreting it correctly, it seems that everything happens simultaneously, rather than sequentially. That is, it seems to show three navigate iterations followed by three delay iterations, and the timestamps on all are identical (but only get 1 second resolution, so don’t think that is useful info).

Can anyone give a hint as to what’s wrong?

Can't seem to get this to work.  Trying to implement a dashboard targeted for an Android tablet, I need it to continuously cycle between three (or more) dashboard views every few seconds.  Code below.  I can fire it and it switches to the first dashboard, but that's it.  I look at the trace, and if I'm interpreting it correctly, it seems that everything happens simultaneously, rather than sequentially.  That is, it seems to show three navigate iterations followed by three delay iterations, and the timestamps on all are identical (but only get 1 second resolution, so don't think that is useful info).

Can anyone give a hint as to what's wrong?   BTW, I'm running HA on a RPi, and displaying with the Brave browser running on Win-10 and an Android tablet, also with Brave.

sequence:
  - repeat:
      for_each:
        - /dashboard-timeweather/0
        - /house-lights-2/default_view
        - /tablet-dashboard/0
      sequence:
        - action: browser_mod.navigate
          data:
            browser_id:
              - 52d9cf0f3f041463da67db98ea122a51
            path: '{{ repeat.item }}'
        - action: browser_mod.delay
          data:
            browser_id:
              - 52d9cf0f3f041463da67db98ea122a51
            time: 10000
alias: display_dashboard
description: ''