employer cover photo
employer logo
employer logo

Tata Consultancy Services

Part of Tata Group

Engaged employer

Tata Consultancy Services interview question

How can you validate Table data?

Interview Answer

Anonymous

15 Jul 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 }