How could I access a dashboard with a single keystroke on an entity card and then automatically set a value for an entity?
I have Browser Mod installed but when I use the “navigate” function - all browser will navigate to the specific dashboard.
For Browser Mod you can target specific Browser’s or if you only want the service to run locally you make it a Browse call via fire-Dom-event. You can then also use browser_mod.sequence where you can also use regular actions. You would want to make your navigate the last action.
The Browser Id controls which browser is used. When omitted with a Server call (regular action from button, automation or script, all browsers are targeted. When left out in a Browser call with fire-dom-event, the local Browse is targeted. Check out the docs for examples.
A more advanced topic is when you want to send the local browser id to a backend script. In this case you use a Browser call, then in the browser mod service you can use the special Browser Id THIS
If you can share the logic of what you are trying to do perhaps I can give you some pointers if you need.