Hello everyone,
I need to display as many items per page as possible, but the bot keeps ignoring the other options and just clicks on the first one. I have 15, 30, 50 and 100 items per page, but they appear differently depending on the total number of items, as displayed in the image below.
So what I was trying to do was a parallel check and I am using the element exists activity to determine which page number appears
I tried two options for the selectors:
- capturing the item by id (for example 100 items per page is the 4th on the list so idx=‘4’)
- capturing the item by name (100 items per page would be aaname=’ 100 ')
and the condition inside the parallel check is
page100 OrElse page50 OrElse page30 OrElse page15
I also tried with
page100 Or page50 Or page30 Or page15
and the bot keeps returning true only for the value 15. What could be the issue with this?