In Chrome (possibly other browsers):
Since the last updated to 7.0.11 I have issues all over the place and a lot of my scripts stopped working.
The first one I found is the “${!URL}”:
It appears that this command only works after a URL was called with the OPEN command:
{
"Command": "open",
"Target": "https://a9t9.com/",
"Value": "",
"Description": ""
},
{
"Command": "echo",
"Target": "url is ${!URL}",
"Value": "green",
"Description": ""
}
But if you try the same thing without the “OPEN” command it fails with the error message above: Internal variable “!URL”
{
"Command": "selectWindow",
"Target": "tab=0",
"Value": "",
"Description": ""
},
{
"Command": "echo",
"Target": "url is ${!URL}",
"Value": "green",
"Description": ""
}