Is there a way to get text from dots/bullet points (Like we get text from Star Ratings)?

For example, from this – I want a text 5 which is the total count of bullets

image

1 Like

Hi @Sami_Rajput ,

Try to find unique html element or class or id used in those bullet points and using find children you can get total count by filtering those.

Let me know once you find, I can help with Find children.

Hi @Sami_Rajput

Try with for each UI element activity and indicate one dot if it is taking as pattern for all dots use the count and increase the count value end of the loop we will get the count.

If above is not working, use the get attribute and indicate those dots.

Hope it helps!!

@Sami_Rajput

May I know why you want to find this specific number? Is it to know the page count?

Is there no next button to go to next pge? Generally if we have it most of the times it gets disabled once the last page is readched

If the count of those dots itself is needed then you have to find a selector whoch identifies only those does let those be highlighted or no…then we can use that selector in find children activity and then can use the output of it to get count using findchildrenoutputvar.Count

Hope this helps

Cheers