selectFrame - reinitialisation since an update

A behaviour has changed since an update.

selectFrame/xxx

pause

selectWindow/tab=2

comment/before an update, frame xxx was always selected here. Now, there is a frame selection reinitialization

Hi!, do you have a test macro for us that shows the issue?

SIMPLE MACRO THAT WORKS =
{
“CreationDate”: “2018-9-15”,
“Commands”: [
{
“Command”: “open”,
“Target”: “https://www.francebleu.fr/loisirs/evenements/france-bleu-bourgogne-vous-offre-un-diner-musical-au-chateau-de-gilly”,
“Value”: “”
},
{
“Command”: “selectFrame”,
“Target”: “index=0”,
“Value”: “”
},
{
“Command”: “click”,
“Target”: “link=Règlement”,
“Value”: “”
}
]
}

MACRO THAT DOES NOT WORK ANYMORE (after an update) =
{
“CreationDate”: “2018-9-15”,
“Commands”: [
{
“Command”: “open”,
“Target”: “https://www.francebleu.fr/loisirs/evenements/france-bleu-bourgogne-vous-offre-un-diner-musical-au-chateau-de-gilly”,
“Value”: “”
},
{
“Command”: “selectFrame”,
“Target”: “index=0”,
“Value”: “”
},
{
“Command”: “pause”,
“Target”: “”,
“Value”: “”
},
{
“Command”: “selectWindow”,
“Target”: “tab=0”,
“Value”: “”
},
{
“Command”: “click”,
“Target”: “link=Règlement”,
“Value”: “”
}
]
}

MY CORRECTION TO HAVE A MACRO THAT WORKS =

{
“CreationDate”: “2018-9-15”,
“Commands”: [
{
“Command”: “open”,
“Target”: “https://www.francebleu.fr/loisirs/evenements/france-bleu-bourgogne-vous-offre-un-diner-musical-au-chateau-de-gilly”,
“Value”: “”
},
{
“Command”: “selectFrame”,
“Target”: “index=0”,
“Value”: “”
},
{
“Command”: “pause”,
“Target”: “”,
“Value”: “”
},
{
“Command”: “selectWindow”,
“Target”: “tab=0”,
“Value”: “”
},
{
“Command”: “selectFrame”,
“Target”: “index=0”,
“Value”: “”
},
{
“Command”: “click”,
“Target”: “link=Règlement”,
“Value”: “”
}
]
}