Google Coinmarketcap.com 上的工作表 ImportXML

Google Sheets ImportXML on Coinmarketcap.com

我有一个 google sheet 用于跟踪加密头寸,我正在使用 ImportXML 从 coinmarketcap.com 中获取代币的当前价格。它们都使用相同的参数集:

  1. URLhttps://coinmarketcap.com/currencies//
  2. 完整的 XPath:/html/body/div[1]/div[1]/div/div[2]/div/div[1]/div[2] /div/div[2]/div[1]/div/span

公式: =IMPORTXML("https://coinmarketcap.com/currencies/the-sandbox/", "/html/body/div[1]/div[1]/div/div[2]/div/div[ 1]/div[2]/div/div[2]/div[1]/div/span", "en US")

这适用于我试过的所有硬币,除了 SAND (https://coinmarketcap.com/currencies/the-sandbox/),我不知道为什么。我几乎尝试了所有我能想到的路径组合。

有人有什么想法吗?我完全坚持这个。

尝试:

=IMPORTXML("https://coinmarketcap.com/currencies/the-sandbox/"; 
 "//div[@class='priceValue ']")