取上图的新手上路文字
使用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]