onDownload is not working in Chrome

I started testing Ui Vision as a replacement of iMacros and everything I tried so far has issues. Maybe it’s because I am learning. Here is a simple test on a public website that should download and save a file allowing me to name the file. However when I run it it saves the downloaded file as it was named originally. So how do I choose the file name programmatically? Also if try to set Chrome to prompt for downloaded file names as set the file location to “c:\test.doc”, it does not work as well. Any help is appreciated.

{
“Name”: “TestDownload”,
“CreationDate”: “2025-7-7”,
“Commands”: [
{
“Command”: “open”,
“Target”: “Sample .doc and .docx download | File Examples Download”,
“Value”: “”,
“Description”: “”
},
{
“Command”: “onDownload”,
“Target”: “v.doc”,
“Value”: “true”,
“Description”: “”
},
{
“Command”: “clickAndWait”,
“Target”: “linkText=Download sample DOC file”,
“Value”: “”,
“Targets”: [
“linkText=Download sample DOC file”,
“xpath=//*[@id="table-files"]/tbody/tr/td[5]/a”,
“xpath=//td[5]/a”,
“css=#table-files > tbody > tr:nth-child(1) > td.text-right.file-link > a”
],
“Description”: “”
}
]
}