IDatapoolIterator dpitr = dpss.dpFactory().open(dp,"");
//Initialize Test Datapool
dpitr.dpInitialize(dp);
//Starting application
startApp("ClassicsJavaB");
while(!dpitr.dpDone())
{
// Click on Place order
placeOrder().click();
// Click on New Customer
newCustomer().click();
ok().click();
//Get the current record &store it in record object
IDatapoolRecord dprec = dpitr.dpCurrent();
// Frame: Place an Order – Click on Card Number
cardNumberIncludeTheSpacesText().click();
//By accessing the corr
esponding cell in the current record from excel sheet
placeAnOrder().inputKeys(dprec.getCell(0).getStringValue());
// Frame: Place an Order – Click on Date
expirationDateText().click();
//By accessing the corresponding cell in the current record from excel sheet
placeAnOrder().inputChars(dprec.getCell(1).getStringValue());
// Frame: Place an Order – Click on Name
nameText().click();
//By accessing the corresponding cell in the current record from excel sheet
placeAnOrder().inputChars(dprec.getCell(2).getStringValue());
// Frame: Place an Order – Click on Street
streetText().click();
//By accessing the corresponding cell in the current record from excel sheet
placeAnOrder().inputChars(dprec.getCell(3).getStringValue());
// Frame: Place an Order – Click on CityStateZip

