WTH: in an automation be able to trigger a trigger

I want to right click on a trigger and choose to trigger it similar to how i can choise to run an action in the actions area. This is for testing purposes of the rest of the automation.

So, the trigger is …
‘something state’ > 51

Whatcha gonna trigger for testing with a click? Didjya go to Developer Tools | State and set it?

What if the trigger is …

trigger: state
entity_id:
  - lock.back_door_lock
  - lock.front_door_lock
  - lock.basement_door_lock
to: unavailable

What does the ‘right click’ do?

Or, if the triggers are:

triggers:
  - trigger: state
    entity_id:
      - cover.big_garage_door
      - cover.small_garage_door
    for:
      hours: 0
      minutes: 0
      seconds: 5
    to: closed
    id: closed
  - trigger: state
    entity_id:
      - cover.big_garage_door
      - cover.small_garage_door
    for:
      hours: 0
      minutes: 0
      seconds: 5
    to: open
    id: open
  - trigger: state
    entity_id:
      - input_boolean.notify_garage_open
    to: "off"
    id: "off"

What are you expecting the ‘right click trigger’ to do?

1 Like

I think this may be a duplicate?

1 Like

this is built in on a different page. use the set state feature in developer tools on a separate window and you can watch your automation trigger and then trace it… too many variables for a button, which is why you type it in in the dev tools.