我正在尝试将表格从https://rotogrinders.com/schedules/nfl拉到Google 表格中
我尝试使用 ImportHTML(" https://rotogrinders.com/schedules/nfl ", "table", 1) 但它只返回标题:
时间 团队 对手线 赔率线 超过/低于 预计点数 预计点数变化
使用 ImportXML,我尝试了 IMportXML(" https://rotogrinders.com/schedules/nfl ","//tr"),但它返回相同的标题并且没有数据。
我不认为 tbody 需要身份验证才能访问。我注销了,清除了缓存,甚至在另一台计算机上尝试过,但仍然没有。
我知道它是一个名为“tschedules”的表,但无法获取数据
我还缺少 XPATH 的另一部分吗?
这是来自 google scraper 的 XPATH:“//table[1]/tbody/tr[td]”