1 回答
TA贡献1804条经验 获得超2个赞
要获取产品的名称、价格和描述,请尝试以下操作:
import time
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.headless = False
driver = webdriver.Chrome(options=options)
url = "https://www.unomax.com/apple/anti-dust-sticker-apple-airpods-pro-spigen-shine-shield-metallic-silver-2-sets.html"
driver.get(url)
time.sleep(2)
element = driver.find_element_by_xpath('//*[@class="right"]')
name = element.find_element_by_tag_name("h2").text
price = element.find_element_by_class_name("price").text
description = element.find_element_by_xpath('//*[@style="color: rgb(68, 68, 68); font-family: "]')
print(f"{name} - {price.replace('HARGA: ', '')}")
print(description.text)
driver.close()
输出:
ANTI DUST STICKER APPLE AIRPODS PRO SPIGEN SHINE SHIELD - METALLIC SILVER (2 SETS) - RP.225,000
Spigen Shine Shield Anti Dust Sticker merupakan sticker protector dengan material logam tipis yang dirancang khusus untuk mencegah debu menempel dan goresan pada AirPods Pro anda. Desain modern, simple dan pemasangannya pun sangat mudah dilakukan. Memiliki ketebalan hanya 0.04mm dan memiliki warna silver yang elegan memberikan perlindungan dan kemewahan pada AirPods Pro anda.
添加回答
举报