Scrape hotel star from trivago

Hi, I need to scrape the hotel stars from trivago, but even after selecting text and element attributes the data doesnt come out.

Url:
https://www.trivago.com/?aDateRange[arr]=2020-02-16&aDateRange[dep]=2020-02-17&aPriceRange[from]=0&aPriceRange[to]=0&iRoomType=7&aRooms[0][adults]=2&cpt2=15893%2F200%2C1322%2F105%2C1320%2F105%2C1318%2F105%2C1316%2F105%2C1314%2F105&iViewType=0&bIsSeoPage=0&sortingId=3&slideoutsPageItemId=&iGeoDistanceLimit=16093&address=&addressGeoCode=&offset=0&ra=

Sitemap:
{"_id":"trivago_thai","startUrl":["https://www.trivago.com/?aDateRange[arr]=2020-02-12&aDateRange[dep]=2020-02-13&aPriceRange[from]=0&aPriceRange[to]=0&iRoomType=7&aRooms[0][adults]=2&cpt2=15893%2F200&iViewType=0&bIsSeoPage=0&sortingId=1&slideoutsPageItemId=&iGeoDistanceLimit=16093&address=&addressGeoCode=&offset=4&ra="],"selectors":[{"id":"pages","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"li.hotel-item","multiple":true,"delay":"3000","clickElementSelector":"button.pagination__page","clickType":"clickOnce","discardInitialElements":"discard-when-click-element-exists","clickElementUniquenessType":"uniqueText"},{"id":"hotel_name","type":"SelectorText","parentSelectors":["pages"],"selector":"span.item-link","multiple":false,"regex":"","delay":0},{"id":"hotel_stars","type":"SelectorElementAttribute","parentSelectors":["pages"],"selector":"div.stars-badges","multiple":false,"extractAttribute":"","delay":0},{"id":"distance","type":"SelectorText","parentSelectors":["pages"],"selector":"p.details-paragraph","multiple":false,"regex":"","delay":0}]}

It would be easier to scrape the rating attribute for number of stars, which is present in every row:

2019-12-07_062312

Type: Element Attribute
Selector: meta[itemprop='ratingValue']
Attribute name: content

Works like a charm, thank you leemeng! :smiley:

I up this cold post because I'm having issues doing the same on this site: GoDaddy Review 2021 - ratings by 80 users. Rank 3.2/10

I tried the following setup, which returns "null":

Selector: span[property=‘ratingValue']
Attribute name: content

What am I doing wrong?