将xpath元素转为html原文
from lxml import etree
response = self.driver.page_source
html = etree.HTML(response)
response = etree.tostring(html, encoding="utf-8").decode("utf-8")
from lxml import etree
response = self.driver.page_source
html = etree.HTML(response)
response = etree.tostring(html, encoding="utf-8").decode("utf-8")