I use from long time ui vision and katalon recorder and i can confirm that Katalon Recorer working better of ui vision.
I say this both because it is true and because I would like the vision to be improved despite noticing so many errors in ui vision in years never solved, I love ui vision but for automation i need a software that can work without bug.
Sendkeys Advantages with Katalon Recorder.
Katalon Recorder records all sendleys commands and allows you to emulate the keyboard quite well, you don’t need xmodules, it’s free and it works and not require focus on screen.
Ui vision sendkey never working and commands can not saved by recording.
Example.
macro code:
{
"Name": "Sendkeys",
"CreationDate": "2021-1-18",
"Commands": [
{
"Command": "open",
"Target": "https://www.w3schools.com/howto/howto_js_autocomplete.asp",
"Value": ""
},
{
"Command": "pause",
"Target": "10000",
"Value": ""
},
{
"Command": "type",
"Target": "id=myInput",
"Value": "A"
},
{
"Command": "pause",
"Target": "10000",
"Value": ""
},
{
"Command": "sendKeys",
"Target": "id=myInput",
"Value": "${KEY_DOWN}"
},
{
"Command": "pause",
"Target": "10000",
"Value": ""
},
{
"Command": "sendKeys",
"Target": "id=myInput",
"Value": "${KEY_ENTER}"
}
]
}
Katalon Recorder working well
Screen
Ui visioin sendkeys bugged (it never work in any site)
The sendkeys command in Katalon Recorder works well and is also recorded instead in ui vision works very badly and is not even recorded automatically. I’ve never seen Sendkeys working in Ui vision.
Often sendkeys with ENTER sends forms instead of clicking the boxes and in general it works badly I still haven’t found any site where sendkeys works with ui vision while otherwise I found many sites where sendkeys works great with Katalon Recorder.
I hope you can improve sendkeys and make it look like Katalon Recoder.
Thanks