我试着用python让评论成为爬虫。 productURL_path = []
for tag in bsObj.findAll(attrs={'class': 'thumb'}):
if "href" in tag.attrs:
productURL_path.append(tag.get('href'))
for reviewcnt in bsObj.findAll(attrs={'class': 'product-reviews-count'}) 但是我不能得
目前正在通过python和selenium开发爬虫,目标是。
class_name定位元素由于某种原因返回空列表,但对1或2个其他元素有效。我尝试过使用XPath和选择器,但仍然返回空列表。尝试使用父class_names,但也不起作用。
#for review date of stay
dateRows = driver.find_elements(By.CLASS_NAME, 'teHYY _R Me S4 H3')
for dates in dateRows:
print(dates.text)