答案 0 :(得分:0)
使用适当的CSS选择器
等
答案 1 :(得分:0)
您可以通过XPath以更优雅的方式获得所需的结果:
project_acronym = response.xpath('//span[.="Project acronym"]/following-sibling::span[1]/text()').get()
project = response.xpath('//span[.="Project"]/following-sibling::span[1]/text()').get()