The price data loads from a json file. You can see this by loading up Dev Tools and searching for the price (7,400
for me) and seeing what request loaded the price.
The code to get the price is simple :)
response = requests.get("https://www.rolex.com/content/api/rolex/model-price.US.m126900-0001.en_us.json").json()price = response['formattedPrice'] # $7,400