我發現lxml無法解析iframe的heml元素。如何在python中解析lxml中的iframe?
import lxml.html
from urllib.request import urlopen
import os
url="http://news.163.com/special/mhmingdan/?bdsj"
file=urlopen(url).read()
root=lxml.html.document_fromstring(file)
tab=root.xpath('//iframe')
如何讓lxml獲得iframe的html元素?
我已糾正它,但爲什麼我無法獲得iframe? –
@it_is_a_literature首先,你不應該編輯這個問題。另外,如果你打印出'tab',你會看到'iframe'元素被找到。 – alecxe
iframe下有一個表節點,爲什麼我不能得到它? –