Switch dashboard when automation detects motion?

Hello everyone,

I’m completely new to everything to do with home assistants. Please excuse any stupid questions :slight_smile:
I used the search but unfortunately I can’t find what I’m looking for or I’m too stupid.

Wish:
When my camera detects motion, I would like to turn on my tablet and go to a specific dashboard.
As a tablet I use a Fire HD10 with Fully Kiosk.
I was able to create an automation, but I am not satisfied with the process.
Motion is detected and the tablet turns on. However, I only find the option “load_url” in Fully
This reloads the complete url and thus delays the loading of the dashboard.

Automation:

alias: Bewegung Haustür
description: schaltet Tablet Smarthome Steuerung ein
trigger:
  - type: motion
    platform: device
    device_id: abc8f2f3a536bb6da43a70d23d29c0e9
    entity_id: binary_sensor.haustuer_motion
    domain: binary_sensor
condition: []
action:
  - device_id: 874efa3931ecae72d6f08d20c0fd8b6b
    domain: button
    entity_id: button.smarthome_steuerung_bring_to_foreground
    type: press
  - service: fully_kiosk.load_url
    data:
      url: http://192.168.235.124:8123/dashboard-kamera/default_view
    target:
      device_id: 874efa3931ecae72d6f08d20c0fd8b6b
mode: single

For testing, I created a button that switches to the “camera” dashboard when I press it.
This works perfectly without loading the complete url.

button:

show_name: true
show_icon: true
type: button
tap_action:
  action: navigate
  navigation_path: /dashboard-kamera/default_view
icon_height: 30px
name: Kamera aufrufen
icon: mdi:camera

Is there a way to do this in automation as well?

Thanks to everyone in advance :slight_smile: