Table table = browser.currentPage().table("table");
// second row, column named "First Column"
// value() returns null if the cell isn't found
Assert.assertEquals(table.cell(1, "First Column").value(), "cell_1_1");
// or
Assert.assertTrue(table.cell(1, "First Column").contains("cell_1_1"));
}
@Test
public void testLogin() {
Form form = browser.currentPage().form("form");