Hi guys,
I try to run test execute using the icon and option run.
But after a bite, I have the following error :"unable to open the file".
File is present in the folder and is not read only.
Any suggestions?
Solved! Go to Solution.
hmmm
If You want to work with Project Script files You need to use an absolute path.
You can get path to You to project with this method: aqFileSystem.GetCurrentFolder();
let pathToFile = aqFileSystem.GetCurrentFolder(); let writeToFile = aqFile.WriteToTextFile( pathToFile + "\\script\\" + fileName + ".js", str, aqFile.ctUTF8, true );
Hi,
Can You show Your "Test Items" project explorer?
I don't understand what you need.
I was writing about this one
Alright, so what I can see from screens the error occurs on the first TestItem with the name "ProjectTestItem2".
Question is, what do You have inside this function?
function Get_Translate_Mgs_Dinamic_File() // Get dinamic file
{
if (Const_lib.Language == "it")
return "c:\\DL Console\\it.json"
else if (Const_lib.Language== "en-US")
return "c:\\DL Console\\en-US.json"
}
Could be that I have to put the absolute path?
hmmm
If You want to work with Project Script files You need to use an absolute path.
You can get path to You to project with this method: aqFileSystem.GetCurrentFolder();
let pathToFile = aqFileSystem.GetCurrentFolder(); let writeToFile = aqFile.WriteToTextFile( pathToFile + "\\script\\" + fileName + ".js", str, aqFile.ctUTF8, true );
Subject | Author | Latest Post |
---|---|---|