1. 程式人生 > >網頁塊元素定位建議使用的xpath方式

網頁塊元素定位建議使用的xpath方式

info use group ring esp 使用 lin image path

技術分享圖片
取上圖的新手上路文字
使用xpath

"//div[@class=‘pbm mbm bbda cl‘]//li[contains(string(),‘用戶組‘)]/span/a/text()"

其他參考方案,使用兄弟節點

 user_group = response.xpath("//div[@class=‘pbm mbm bbda cl‘]//em[contains(text(), ‘用戶組‘)]/following-sibling::*[1]/a/text()").extract()[0]

網頁塊元素定位建議使用的xpath方式