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: ''

Have you had any luck? I once had this sort of working, but browser_mod would stop working every week or so, so I tried moving to the mobile app but didn’t like that, now can’t get browser_mod navigating again. Would appreciate seeing anything you have working!

browser_mod.delay is for use in a browser_mod.sequence. Using it in isolation outside of a Browser Mod sequence will do nothing. I suggest you either use HA delay action, or browser_mod.sequence and chain the navigate and delays that way.