Uivision paste from clipboard to disengaged area (not input or textArea box)

Hello UIV People
I have an issue that I cannot resolve
Automating some task in JIRA (do not ask why)
Have a Text saved in a ${!ClipBoard}. Need to past it not into input or textArea box


    {
      "Command": "store",
      "Target": "Hello wprld",
      "Value": "!clipboard",
      "Description": ""
    },
    {
      "Command": "click",
      "Target": "//button[@data-testid=\"raven-steps-import-button\"]",
      "Value": "",
      "Description": "Click on \"Import\" button"
    },
    {
      "Command": "click",
      "Target": "xpath=//*[@id=\"raven-from-clipboard-link\"]/span/span",
      "Value": "",
      "Description": "Select \"From Clipboard option\""
    },
    {
      "Command": "XType",
      "Target": "${!ClipBoard}",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "comment",
      "Target": "XType // {KEY_CTRL+KEY_V}",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "comment",
      "Target": "sendKeys // //div[@id=\"raven-import-step-dialog\"]//div[@id=\"steps-placeholder\"]",
      "Value": "{KEY_CTRL+KEY_V}",
      "Description": ""
    },
    {
      "Command": "comment",
      "Target": "type // //div[@id=\"raven-import-step-dialog\"]//div[@id=\"steps-placeholder\"]",
      "Value": "${!ClipBoard}",
      "Description": ""
    },

Try to use an Xclick (not a click) before the command Xtype should activate the box for writing. Also insert pauses between the various commands of at least 1 second to prevent the speed from creating malfunctions in filling in the boxes.