1 package br.com.caelum.seleniumdsl.table; 2 3 public interface Row { 4 5 public Cell cell(int column); 6 7 public Cell cell(String column); 8 9 public Integer index(); 10 11 }