使用
find_elements_by_class_name()让所有块,
find_element_by_xpath()以获得
title与
company每个人:
persons = []for person in driver.find_elements_by_class_name('person'): title = person.find_element_by_xpath('.//div[@]/a').text company = person.find_element_by_xpath('.//div[@]/a').text persons.append({'title': title, 'company': company})
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)