华为商城
#@Author : 桃子猫的布偶
#@Software: PyCharm
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
import time
driver=webdriver.Chrome("D:/python/chromedriver.exe")
driver.get("https://www.vmall.com/")
driver.implicitly_wait(10)titles=driver.find_elements_by_css_selector(".b>ol.category-list > li")
for t in titles:conStr = t.textabove = driver.find_element_by_link_text(conStr)ActionChains(driver).move_to_element(above).perform()list=t.find_elements_by_css_selector(".category-item .subcate-item")print("一級菜单:",conStr)for one in list:print("\t",one.text)
driver.execute_script("window.scrollBy(0, 900)")
products=driver.find_elements_by_css_selector(".home-recommend-goods.home-hot-goods.index-channel-floor .grid-list.clearfix li")
for p in products:try:imgStr = p.find_element_by_css_selector(".grid-tips span")if "热销爆款" != imgStr.text:continuename = p.find_element_by_css_selector(".grid-title").textprice=p.find_element_by_css_selector(".grid-price").textprint(f"{imgStr.text}:{name},价格:{price}")except:pass
打印结果演示
一級菜单: 手机HUAWEI Mate系列HUAWEI P系列HUAWEI nova系列华为畅享系列HUAWEI 麦芒系列荣耀 V系列荣耀 HONOR系列荣耀 X系列荣耀 Play系列
一級菜单: 笔记本华为MateBook X系列华为MateBook系列华为MateBook D系列华为MateBook B系列荣耀猎人游戏本系列荣耀MagicBook系列荣耀MagicBook Pro系列个人电脑配件电脑包
一級菜单: 平板华为MatePad 系列荣耀 V系列华为畅享 系列荣耀数字系列荣耀畅玩系列平板配件
一級菜单: 智能穿戴&VR智能手表儿童手表智能手环VR智能体脂秤穿戴配件
一級菜单: 智能家居一級菜单: 智慧屏华为智慧屏荣耀智慧屏智慧屏配件
一級菜单: 耳机音箱真无线耳机有线耳机蓝牙耳机蓝牙音箱智能眼镜智能音箱
一級菜单: 配件充电器/线材移动电源自拍杆/支架摄像机/镜头智能硬件生活周边保护壳保护套贴膜个人电脑配件电脑包平板配件智慧屏配件穿戴配件
一級菜单: 生态产品智能灯光生活电器数码周边环境卫士安防门锁健康保健运动健身户外出行厨电卫浴影音娱乐个护美妆
一級菜单: 增值服务&其他华为视频卡花币卡华为音乐卡华为云空间电池更换服务服务器AI 计算平台
热销爆款:荣耀Play4,价格:¥1999Process finished with exit code 0