ContributionsMost RecentMost LikesSolutionsRe: Data-Driven Loop That did the trick! Thank you Re: Data-Driven Loop I also tried this to no avail: TestedApps.WWCabinetDoorOrder.Params.ActiveParams.CommandLineParameters = KeywordTests.TransferOrders.Variables.LoopOrdersToTransfer.Value(KeywordTests.TransferOrders.Variables.LoopOrdersToTransfer.ColumnName(0)) Re: Data-Driven Loop I only have 1 column in the csv file so I now have it like this: Data Driven Loop (I read 5 records in the csv file.For each loop Run Code Snippet: TestedApps.WWCabinetDoorOrder.Params.ActiveParams.CommandLineParameters = KeywordTests.TransferOrders.Variables.LoopOrdersToTransfer.Value(0) Run Code Snippet: TestedApps.WWCabinetDoorOrder.Run The loop runs OK. The program starts up 5 times. The problem is that is starts up without a parameter loaded into it. Thanks Re: Data-Driven Loop Do I put the column number there? KeywordTests.TransferOrders.Variables.LoopOrdersToTransfer.Value(1)? Re: Data-Driven Loop Within the Data Loop, I run 2 code snippets. 1. TestedApps.WWCabinetDoorOrder.Params.ActiveParams.CommandLineParameters = KeywordTests.TransferOrders.Variables.LoopOrdersToTransfer.Value() 2. TestedApps.WWCabinetDoorOrder.Run It seems to be skipping #1, but executes #2 correctly for each record in the loop. The parameter is stored in the .csv file that is read in the loop. I just don't know how to load that parameter before executing #2. This is a visual studio .net desktop executable. Thanks Data-Driven Loop I have created a Data-Driven loop to read a .csv file. For each record read, I want to use the data as a parameter for a TestedApp. I have tried many different things to no avail. Any suggestions? Thanks in advance! Solved