public List<Car> getCars() {
List<Car> result = new ArrayList<Car>();
for (WebElement row : tBody.findElements(By.tagName("tr"))) {
List<WebElement> cells = row.findElements(By.tagName("td"));
result.add(new Car(cells.get(0).getText(), cells.get(1).getText(), cells.get(2).getText(), cells.get(3).getText(),
cells.get(4).getText(), null));
}
return result;
}