How to extract no of rating for each star without going into the each star page.
Number of reviews per category are not visible on this screen so it’s not possible to get.
You will have to get it one by one by using the below filter.
Thanks,
Ashok
You can use table extraction it will retrieve the ratings in form of data table and then you can further use that data table, or you can individually extract the ratings using Get Text activity and then can further use it.
Thanks,
Bharat
And in addition, if you need the number of reviews, not only the %, just extract the total from the top side, right below the stars, and calculate the approximate number of reviews based on the percentage.
40,634 totals - 79% 5 Star = ~32,101 unique 5* reviews
BR,
Ignasi
Use For Each UI Element. When indicating elements indicate the main element as the percentage, then add a label and indicate the “5 star” “4 star” etc label. In the loop, add the data to a dictionary with the rating as the key and the percentage as the value. Now you have a simple key/value dictionary with an item for each rating and its percentage. You can access the percentage value for a rating with yourDictVar(“5 star”).ToString which will give 60%.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.