想要抓的资料是 http://store.hp.com/us/en/cat/Laptops
Shop Now 所有连出去的连结
写过其他的爬虫程式,底下的方法都可以用,不知道为什么这个网站抓不到想到的资料
homePage = requests.get("http://store.hp.com/us/en/cat/Laptops")
homeSoup = BeautifulSoup(homePage.text.encode("utf-8"),"html.parser")
for data in homeSoup.find_all('a',{"class":"details"}):
print(data.get("href"))
麻烦大家帮忙解惑,谢谢