Correct way to match to whole raw JSON?

Hi,

Chrome adds some “styling” tags to raw JSON output when viewed in Distill selector (html, head, body, pre) and this messes the selector in Distill. What is the correct selector to use if you want to match the raw JSON document in full?

By default the selector suggests XPath → “//pre” when you use “Match full page” but that is incorrect because of the Chrome styling. This will result in “SELECTION_EMPTY” errors.

I found that XPath → “/*” seems to work but is this correct way?

Here is the URL I am trying to check for changes: https://booking.tallink.com/api/travelclasses?locale=fi&country=FI&voyageType=CRUISE&isDayCruise=false&outwardSailId=2146475&includeSharedCabins=false&includeSpecialCabins=false&includePetCabins=false&includeRegularCabins=true&from=hel&to=sto

/* looks good @kaleva.antti!