1 回答

TA貢獻1804條經(jīng)驗 獲得超2個贊
要獲取產(chǎn)品的名稱、價格和描述,請嘗試以下操作:
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.
添加回答
舉報