ContributionsMost RecentMost LikesSolutionsRe: DDT.CurrentDriver' is null or not an object the error i get is again DDT.CurrentDriver is null or not an object. When i rename var mycsv , works fine but if I dont reset this variable everytime i run the test, it fails. Re: DDT.CurrentDriver' is null or not an object Another strange thing happening with testcomplete is that the same test, after i made the changes you suggested on the file path, it worked once, by writing the first 2 text field and than failed. I am unable to run pass the same error message again. Question is, why did it worked once? am i missing anything? It kind of work when i change the variable name....mycsv. Any suggestion on how to approach this? Re: DDT.CurrentDriver' is null or not an object Thank you for your input, i tried that as well, and still get the same error. DDT.CurrentDriver is null. DDT.CurrentDriver' is null or not an object i keep getting this error on my testing using javascript. I have looked all materials within smart bear...not sure what else to do. This is what i have so far. function DriveMyTest() { var mycsv; mycsv = DDT.CSVDriver("C:\\TestComplete\Book1.csv"); mycsv.DriveMethod("ScriptTest.Test1"); } function Test1() { textbox = panel.textboxClaimLabOrderId; textbox.Click(72, 1); textbox.SetText(DDT.CurrentDriver.Value("textboxClaimLabOrderId")); } Solved