I’m using UI.Vision RPA under Firefox 99 (64-bit). I’m trying to make a makro, which will use keyboard at some stages. However it seems like XType is not working. Generic type command works, but it can send only text. To send for example Tab or Enter, I need XType, but I can’t make it work. Here is MVE:
{
"Name": "Keys",
"CreationDate": "2022-5-2",
"Commands": [
{
"Command": "open",
"Target": "https://keyboardchecker.com/",
"Value": "",
"Description": ""
},
{
"Command": "XType",
"Target": "${KEY_TAB}",
"Value": "",
"Description": ""
}
]
}
I can supply any key under ${…}, it makes nothing. I have RealUser XModule installed, version 1.0.31. What’s more do I need to make it work?