Hi,
I have a scenario where I need to iterate the rows in a table find a particular value and do some logic. For this if I know the number rows I can Iterate using for loop.
Can someone guide me in this.
In Selenium, we get the table as an objet and then try to find the 'Tr' from that table. Eg: List<WebElement> tblRows = table.findElements(By.tagName("tr")); I tried something similar but could not achive. Could you please help me solving this.
-Alice