On my test case i create some members and after this i will chek the list. How can i iterate through a table on IOS using Java?
I have start with this code:
MobileElement table = driver.findElement (By.className ("XCUIElementTypeTable"));
MobileElement cellTable=table.findElement(By.className("XCUIElementTypeCell"));
List <MobileElement> texts = table.findElements (By.className ("XCUIElementTypeStaticText"));
can someone help me pls.? many thanks
