// Make sure item is in the cart
// Check the first two rows of the table
WebTable itemTable = resp.getTableStartingWith(Util.getBundle("view", "itemIdLabel")); // "Item ID"
itemTable.purgeEmptyCells();
String[][] table = itemTable.asText();
assertEquals( "EST-4", table[1][0].trim());
// proceed to checkout
resp = resp.getLinkWith(Util.getBundle("view", "buttonProceedToCheckout")).click(); // "Proceed to Checkout"