employer cover photo
employer logo
employer logo

Tata Consultancy Services

Fait partie de Tata Group

Employeur impliqué

Question d’entretien chez Tata Consultancy Services

How can you validate Table data?

Réponse à la question d'entretien

Utilisateur anonyme

15 juill. 2024

WebElement table = driver.findElement(By.id("dataTable")); List rows = table.findElements(By.tagName("tr")); for(WebElement row : rows) { List cells = row.findElements(By.tagName("td")); // Process cell data }