Test Execute, unable to open the file
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Test Execute, unable to open the file
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.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Can You show Your "Test Items" project explorer?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I don't understand what you need.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I was writing about this one
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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 );
