如果我使用:如何找到文本的父節點?
import requests
from lxml import html
response = request.get(url='someurl')
tree = html.document_fromstring(response.text)
all_text = tree.xpath('//text()') # which give all text from page
內部,我們都從頁面中的文本此all_text名單。現在我想知道是否:
text_searched = all_text[all_text.index('any string which is in all_text list')]
是否有可能到達搜索文本的Web元素?
我認爲BeatuifulSoup是一個更好的選擇。 – skyline75489