1

我正在尝试抓取此页面(例如): https ://super.walmart.com.mx/papel-higienico/papel-higienico-petalo-rendimax-12-rollos-con-320-hojas-dobles/00750194345845

...获得产品价格。使用 requests-html 我可以在其他页面中获取动态内容,但它不适用于 wallmart。我知道我可以用 selenium 做到这一点,但我试图理解为什么它不能与 requests-html 一起使用,以及(如果可能的话)我该怎么做。

这是我当前的代码:

import requests_html as rh

session = rh.HTMLSession()
r = session.get("https://super.walmart.com.mx/papel-higienico/papel-higienico-petalo-rendimax-12-rollos-con-320-hojas-dobles/00750194345845")

r.html.render()
r.html.find('.main-content_rightContainer__3_cSi',first=True).text
4

0 回答 0