Multiple bugs - Firefox - 9.1.9

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.

Thanks for the feedback. I confirmed issues 1+2 and we will fix this asap.

Issue 4 I will look at later (no Alpine Linux at hand right now).

Issue 3: I am not sure I see the issue. It is normal that you need to reset !statusOK after it has been triggered by a failure to be false. It does not reset by itself.

Or this there another issue I do not see? If I run below macro it looks ok to me:

{
  "Name": "t1-1",
  "CreationDate": "2024-5-15",
  "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": "echo",
      "Target": "status is ${!statusOK}",
      "Value": "blue",
      "Description": ""
    },
    {
      "Command": "waitForElementVisible",
      "Target": "xpath=//*[@id=\"lostrhsrthgo\"]/img",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "echo",
      "Target": "status is ${!statusOK}",
      "Value": "blue",
      "Description": ""
    }
  ]
}

Thanks for the response. For issues 3 it was my mistake then it is working as designed. I cant see the required reset mentioned in the documentation it would be good if it was added or mentioned near all ${!statusOK} uses in the docs.

I have more info on this issue that might help find the bug.

I start my Firefox with a blank tab and if i open any URL in the blank tab i can then click the icon to open the IDE and it works.

If i start my Firefox with a tab that opens any URL it seems to work correctly every time.

so the issues seems to stem from the tab being blank.

This issue has been fixed with V9.2.3 - thank you for reporting it.