Multiple actions on tap

Im trying to make a custom:button-card to change an input_select and also navigate to another lovelace page. Is this possible?

type: custom:button-card
name: Manuell
icon: mdi:palette-outline
tap_action:
  actions:
    - action: call-service
      service: input_select.select_option
      service_data:
        entity_id: input_select.living_room_scene_select
        option: lys_manuell
    - action: navigate
      navigation_path: /lovelace/test/

I’m also looking for something to accomplish this.

I can find solutions for triggering multiple changes via a script, but not change a single input value + navigate.

Did you ever find a solution?

Some time ago I faced exactly the same case (set “input_select” , then go to a view generated dependingly on that state).
Since “tap_action” supports only ONE action, we have to call a script to perform multiple actions.
But we cannot use “navigate” inside a script.
I was advised to use some service of a “browser_mod” to navigate to a particular view from a script. Unfortunately, I even haven’t tested this proposal.