getColumnByIndex(int index) {
return getWrappedElement().findElements(
- By.cssSelector(String.format("tr > td:nth-of-type(%d)", index)));
+ By.cssSelector(String.format("tr > td:nth-of-type(%d)", index)));
}
/**
@@ -142,7 +142,11 @@ public WebElement getCellAt(int i, int j) {
* Returns list of maps where keys are table headings and values are table row elements ({@code }).
*/
public List |