Я пытаюсь очистить веб-сайт, указанный в коде и в данных, которые я выбрал, для конкретного div / класса, однако, похоже, он возвращает все, что начинается с «product».Не могли бы вы помочь мне с этим кодом.Ценю вашу помощь для новичка в Python.Также, если это может быть написано лучше, я с радостью приму это.
url="https://shop.coles.com.au/a/a-tas-regional-glenorchy/everything/browse/dairy--eggs-meals/milk-3796059?pageNumber="
for x in range(1,6):
turl=url+str(x)
driver.get(turl)
time.sleep(10)
soup=BeautifulSoup(driver.page_source,"html.parser")
data = soup.find_all("div",{"class":"product"})
t=driver.find_elements_by_xpath('.//span[@class = "product-brand"]')
count=0
maxC=int(len(t))
for item in data:
if count < maxC and count>=0:
if item.find("span", {"class":"product-brand"}) is not None:
ProductText1=item.find("span", {"class":"product-brand"}).text
else:
ProductText1=""
if item.find("span", {"class":"product-name"}) is not None:
ProductText2=item.find("span", {"class":"product-name"}).text
else:
ProductText2=""
if item.find("span", {"class":"package-size"}) is not None:
size=item.find("span", {"class":"package-size"}).text
else:
size=""
if item.find("span", {"class":"package-price"}).text is not None:
Price=item.find("span", {"class":"package-price"}).text
else:
Price=""
if item.find("span", {"class":"product-qty"}).text is not None:
Price1=item.find("span", {"class":"product-qty"}).text
else:
Price1=""
if item.find("span", {"class":"product-price"}).text is not None:
Price2=item.find("span", {"class":"product-qty"}).text
else:
Price2=""
ProductText=str(ProductText1)+" "+str(ProductText2)
writer.writerow([ProductText,Price2,size,Price])
count+=1