Issue while entering text in bootstrap tag input field

I am trying to enter text in bootstrap tag input, it is typing the text “africamap” as
A F R I C M P africamap.

Is there any way to overcome this issue. i have attached a screen cast and a snapshot of the issue encountered.

I can 't see your macro. How do you type the text? XType | Africamap?

Can we access the URL for testing?

Yes you can, i will share it.

If you are PRO or Enterprise customer, you can also email the URL directly to us at team AT ui.vision and we can have a look at this.

Without testing on the website itself, it is difficult to tell what is going wrong. But it certainly looks like problem that can be solved.

Ok Thanks. I will share it right away with support team.

i have shared the details. Please check and let me know.
Thanks

Thanks. I received it. But I noticed the CSV file is missing? Please do this:

  1. Upgrade to V5.6.5 (available for Firefox)
  2. Use the new “Export As ZIP” option for the macro
  3. Please send me this ZIP file - then I have everything in one package (JSON and CSV)

Shared with support. Please check.
Thanks

Thanks for the good test case! The solution was to replace TYPE with XTYPE -> then it works:

Demo:

Note: bringBrowserToForeground is required. The focus can only be set on the field when the browser is the top foreground window.

My test macro:

{
  "Name": "tags",
  "CreationDate": "2020-5-15",
  "Commands": [
    {
      "Command": "bringBrowserToForeground",
      "Target": "xpath=//*[@id=\"product_uploader\"]/div[6]/div/input",
      "Value": ""
    },
    {
      "Command": "comment",
      "Target": "Set focus, then XTYPE",
      "Value": ""
    },
    {
      "Command": "click",
      "Target": "xpath=//*[@id=\"product_uploader\"]/div[6]/div/input",
      "Value": ""
    },
    {
      "Command": "XType",
      "Target": "${KEY_1}${KEY_2}${KEY_3}",
      "Value": ""
    },
    {
      "Command": "XType",
      "Target": "${KEY_ENTER}",
      "Value": ""
    },
    {
      "Command": "XType",
      "Target": "africamap",
      "Value": ""
    },
    {
      "Command": "XType",
      "Target": "${KEY_ENTER}",
      "Value": ""
    }
  ]
}