Forum Discussion
Ryan_Moran
12 years agoValued Contributor
This shouldn't require any additional installations. I just ran a simple test of the driver on a fresh install of Win8.1 and it seems to work just fine. Make sure you have the "Data-Driven Test (Version: 4.0)" extension enabled under File>Install Extensions.
//JScript example
DDT.ExcelDriver(myXLSPath,mySheetName)
while (! DDT.CurrentDriver.EOF())
{
//Gets a value from the storage and posts it to the log
Log.Message(DDT.CurrentDriver.Value(0));
DDT.CurrentDriver.Next();
}
// Closes the driver
DDT.CloseDriver(DDT.CurrentDriver.Name);