As shown below, I want to check if there is a UIAStaticText for each of the UIACollectionCell.
Is there anyway to find it?
Thanks
Asked
Active
Viewed 286 times
-2

shayyy7
- 93
- 7
-
You can check my implementation here [https://stackoverflow.com/a/61430077/9389274]. Hope it can be helpful for you and you can answer to some questions. – Mikhail Barinov Aug 18 '21 at 07:37
1 Answers
0
You can use methods below where element
is your cell element.
element.findElements(By.className("UIAStaticText"));
element.findElement(By.ByClassName"UIAStaticText");
-
Error in second method:element.findElement(By.className("UIAStaticText")); – Degard Mar 16 '16 at 10:08