public class TableSectionInspector extends ElementByReferenceInspector {
private TableInspector table;
private List<ElementInspector> rows;
public TableSectionInspector(TableInspector table, String sectionTagName) {
super(new SubElementByPathInspector(table, sectionTagName));
this.table = table;
}