List of bugs I have found:
Firefox: 126.0 (64-bit)
UI.V: 9.1.9
Win 10
1 - [ ] Show most common internal variables & [ ] Show advanced internal variables
cannot be checked or unchecked
2 - When using split bar tool to expand size of log box
if you expand it over the table view the background for the command: target: and so on disappears.
3 - ${!STATUSOK} == true don’t work unless !STATUSOK is stored manually first.
If !STATUSOK is not stored as true before every use of something that trigger’s it then ${!STATUSOK} == true will do nothing.
for example in the below code if you run it as is it will not go to label 2 skipping label 1 even tho it knows step 8 is true.
then if you uncomment steps 4 and 7 it works correctly
{
"Name": "loop test",
"CreationDate": "2024-5-14",
"Commands": [
{
"Command": "store",
"Target": "3",
"Value": "!TIMEOUT_WAIT",
"Description": ""
},
{
"Command": "store",
"Target": "true",
"Value": "!errorignore",
"Description": ""
},
{
"Command": "open",
"Target": "https://ui.vision/rpa/docs/selenium-ide/gotoif",
"Value": "",
"Description": ""
},
{
"Command": "comment",
"Target": "store // true",
"Value": "!STATUSOK",
"Description": ""
},
{
"Command": "waitForElementVisible",
"Target": "xpath=//*[@id=\"lostrhsrthgo\"]/img",
"Value": "",
"Description": ""
},
{
"Command": "gotoIf",
"Target": "${!STATUSOK} == true",
"Value": "1",
"Description": ""
},
{
"Command": "comment",
"Target": "store // true",
"Value": "!STATUSOK",
"Description": ""
},
{
"Command": "waitForElementVisible",
"Target": "xpath=//*[@id=\"logo\"]/img",
"Value": "",
"Description": ""
},
{
"Command": "gotoIf",
"Target": "${!STATUSOK} == true",
"Value": "2",
"Description": ""
},
{
"Command": "label",
"Target": "1",
"Value": "",
"Description": ""
},
{
"Command": "label",
"Target": "2",
"Value": "",
"Description": ""
}
]
}
4 - On first load up of OS and firefox clicking the UI.V logo to open the IDE dose nothing
This one happens on:
Alpine Linux: 3.19.1
Firefox: 125.0.3
Raspberry pi 4
This one is intermittent but happens quite frequently. If I close firefox and reopen it works correctly its just on the very first start up of os and firefox.