How to add default delay between bot's response and subsequent botium's input

Hi,
I have a requirement of setting a few milliseconds of delay before sending out a request to my bot to mimic the real time behavior.

I could have used PAUSE in #me section of my script to achieve that but this will put an added responsibility on script designer to add them.

Is there any way I can set default delay anywhere in configuration???

Can be done with a little logic hook to add some delay everywhere

{
  "botium": {
    "Capabilities": {
      ....
      "LOGIC_HOOKS": [
        {
          "ref": "DELAY_SEND",
          "src": {
            "onMeStart": "module.exports = new Promise((resolve) => setTimeout(resolve, 1000))"
          },
          "global": true
        }
      ]
    }
  }
}