I was preparing a test macro for you and figured that it hangs only happens if selectWindow tries to select active tab. Since tab management is a nightmare in Kantu I’ve been using this selectWindow to select the right tab and without any issues selecting active tab before v5 update.
Look at the macro you will see a freeze on the second time of selection of a Chrome tab.
{
"Name": "test tabs",
"CreationDate": "2019-6-6",
"Commands": [
{
"Command": "open",
"Target": "https://ui.vision/",
"Value": ""
},
{
"Command": "store",
"Target": "FAST",
"Value": "!REPLAYSPEED"
},
{
"Command": "store",
"Target": "true",
"Value": "!ErrorIgnore"
},
{
"Command": "selectWindow",
"Target": "tab=open",
"Value": "https://www.google.com/chrome/"
},
{
"Command": "selectWindow",
"Target": "tab=open",
"Value": "https://github.com/"
},
{
"Command": "selectWindow",
"Target": "title=*UI Vision*",
"Value": ""
},
{
"Command": "selectWindow",
"Target": "title=*GitHub*",
"Value": ""
},
{
"Command": "selectWindow",
"Target": "title=*Chrome*",
"Value": ""
},
{
"Command": "selectWindow",
"Target": "title=*Chrome*",
"Value": ""
},
{
"Command": "selectWindow",
"Target": "TAB=CLOSEALLOTHER",
"Value": ""
}
]
}