Scraping owserver v2 xml result

hello,
i try to scrap an xml result from 1wire owserver v2.
the result is as bellow

The search key is ROMID et the data to extract is temperature.

I Tryied this

- platform: scrape
  resource: http://user:[email protected]/details.xml
  select: "33000002E1777028"
  value_template: '{{ (Temperature | int) / 10 }}'
  unit_of_measurement: "°C"
  name: 1wire_33000002E1777028

Is scrape the good way to extract informations?

Tks in advance.