Bug with looping in incognito mode

I’ve run into a bug while writing a new macro for Kantu.

I have a project where I need to run in incognito mode (browser is loaded in incognito mode) and I have a macro which loops indefinitely. At the end of each loop, kantu closes out the browser window and relaunches, however when it relaunches, it’s no longer in incognito mode. I’ve included a sample script. How can I get Kantu to remain in incognito mode when running the loop? I tried doing a registry policy edit to force Chrome to always use Incognito, however since the Kantu Extension uses spanning instead of split, it won’t load the Kantu popup window for the extension. Is there a modification I can make in the meantime to the extension codebase that would tell Kantu to always load an incognito browser?

{
  "Name": "TheDAndiamo",
  "CreationDate": "2019-8-24",
  "Commands": [
    {
      "Command": "open",
      "Target": "https://www.clientinternalwebsite",
      "Value": ""
    },
    {
      "Command": "store",
      "Target": "true",
      "Value": "!errorIgnore"
    },
    {
      "Command": "click",
      "Target": "link=clientbutton",
      "Value": ""
    },
    {
      "Command": "selectWindow",
      "Target": "TAB=CLOSE",
      "Value": ""
    }
  ]
}

Process to duplicate error

  1. Launch an instance of Chrome Browser in incognito mode via --incognito flag in shortcut.
  2. Create macro with the code above.
  3. Run macro in loop
  4. Subsequent loops after the first fail to run in incognito mode.

I can not recreate this issue. I run the macro below in a loop, and all works fine and Chrome stays in incognito mode.

{
  "Name": "incognito ",
  "CreationDate": "2019-8-29",
  "Commands": [
    {
      "Command": "open",
      "Target": "https://ui.vision/demo/tabs",
      "Value": ""
    },
    {
      "Command": "click",
      "Target": "linkText=Open new web page in new browser tab",
      "Value": ""
    },
    {
      "Command": "selectWindow",
      "Target": "tab=close",
      "Value": ""
    }
  ]
}