File not saving with csvSaveArray despite XModule showing as installed v1.0.12

Hi, I’m having trouble getting any macro to save a .csv file, even though the FileAccess XModule shows as installed (v1.0.12). Here’s what’s happening:

  • I’m using the latest UI.Vision extension for Chrome on Windows 10.
  • FileAccess XModule is installed and says “Installed v1.0.12” under the “XModules” tab.
  • I have a folder called C:\Users\myname\Documents\uivision\datasources.
  • The [FOLDER] section of the ui.vision.ini file says:
[FOLDER]  
path=C:\Users\myname\Documents\uivision
  • I’ve tried both csvSaveArray and csvSave, using simple test macros like this:
executeScript_Sandbox | return [['Hello world!']]; | myArray
csvSaveArray          | myArray                   | test_output
  • The macro runs and completes successfully.

  • But no CSV file appears in the datasources folder.

  • I’ve tried changing folder paths, reinstalling the XModules, and checking file permissions (all full control for my user).

  • The test macro does not produce any errors — just no file saved.

  • Originally, the XModules tab showed the Home Folder as C:\Users\myname\**Desktop**\uivision, and that folder did contain subfolders like datasources, macros, images, and logs; but I manually added them. Still didn’t save.

  • To direct the output to Documents\uivision, I manually created a ui.vision.ini file in the AppData\Roaming\UI.Vision folder and set this:

[FOLDER]
path=C:\Users\myname\Documents\uivision
  • Even after doing this and confirming the path change, no files are saving to either location — not to Documents\uivision\datasources or Desktop\uivision\datasources.

Any ideas why the file isn’t being created despite no error? I’m an absolute rookie, so please submit answers in “dummy” format. :stuck_out_tongue:

Thanks in advance!