How to scrape stars(rating) in a website

Hi ,

I am not able to scrap stars present in below image, also am not able to scrape complete page in the site out of 109 am able to scrape only 3 which ever got loaded.

can someone help me.

Hi
stars are like image so what would be the need on scrapping it
may be we can scrape the number to the left of those stars which could help us or is there any need…because even if we do that manually we wont be able to make use of that stars to rate it as the image might differ any time

and to get the value of the 109 reviews we can either use Screen Scrapping method or get text method
were in screen scapping we can use OCR method or with GET TEXT method we can choose that as a element if possible and get the value with variable as a output

hope this would help you
Cheers @Karthik_Kulkarni

Hi @Karthik_Kulkarni,

Can you please share the link of the page shown over here? And what details are you looking for?

Thanks & regards,
Apurba

Hi,
Its just a simple thing
Use Get attribute and indicate the stars and then you select class instead of aaname then you will get the required output
so in order to extract only rating value you can use this regex “\d+”
You will get the output that you want only in 2 step