//保护套质地:
document.querySelectorAll(‘#struct-bindProp .sell-catProp-struct input‘)[0]
//款式
document.querySelectorAll(‘#struct-bindProp .sell-catProp-struct i‘)[1].click()
document.querySelectorAll(‘.sell-o-select-options .options-content .options-item‘).forEach((item)=>{
if(item.innerText==‘支架式‘)
{
item.click();
}
})
//适用手机机型
document.querySelectorAll(‘#struct-bindProp .sell-catProp-struct input‘)[2]
//型号
document.querySelectorAll(‘#struct-bindProp .sell-catProp-struct input‘)[3]
//商品属性 功能
document.querySelectorAll(‘#base-card i‘)[0].click()
document.querySelectorAll(‘.sell-o-select-options .options-content .options-item‘).forEach((item)=>{
if(item.innerText==‘防水‘)
{
item.click();
}
})