增加raw_html和inner_raw_html两个属性

This commit is contained in:
g1879 2021-12-01 14:11:52 +08:00
parent e6d15054b1
commit af69ca22c9
8 changed files with 71 additions and 47 deletions

View File

@ -26,10 +26,15 @@ class BaseParser(object):
def eles(self, loc_or_str: Union[Tuple[str, str], str]): def eles(self, loc_or_str: Union[Tuple[str, str], str]):
return self._ele(loc_or_str, False) return self._ele(loc_or_str, False)
@property
def html(self) -> str:
"""返回已转码的html文本"""
return format_html(self.raw_html)
# ----------------以下属性或方法待后代实现---------------- # ----------------以下属性或方法待后代实现----------------
@property @property
def html(self): def raw_html(self) -> str:
return return ''
@abstractmethod @abstractmethod
def s_ele(self, loc_or_ele): def s_ele(self, loc_or_ele):
@ -65,9 +70,9 @@ class BaseElement(BaseParser):
def tag(self): def tag(self):
return return
@property # @property
def html(self): # def html(self):
return # return
@property @property
def parent(self): def parent(self):
@ -119,6 +124,11 @@ class DrissionElement(BaseElement):
"""返回元素注释文本组成的列表""" """返回元素注释文本组成的列表"""
return self.eles('xpath:.//comment()') return self.eles('xpath:.//comment()')
@property
def inner_html(self) -> str:
"""返回已转码的html文本"""
return format_html(self.inner_raw_html)
def texts(self, text_node_only: bool = False) -> list: def texts(self, text_node_only: bool = False) -> list:
"""返回元素内所有直接子节点的文本,包括元素和文本节点 \n """返回元素内所有直接子节点的文本,包括元素和文本节点 \n
:param text_node_only: 是否只返回文本节点 :param text_node_only: 是否只返回文本节点
@ -186,8 +196,8 @@ class DrissionElement(BaseElement):
# ----------------以下属性或方法由后代实现---------------- # ----------------以下属性或方法由后代实现----------------
@property @property
def inner_html(self): def inner_raw_html(self) -> str:
return return ''
@property @property
def attrs(self): def attrs(self):
@ -255,9 +265,9 @@ class BasePage(BaseParser):
def url(self): def url(self):
return return
@property # @property
def html(self): # def html(self):
return # return
@property @property
def json(self): def json(self):

View File

@ -33,16 +33,16 @@ def get_ele_txt(e) -> str:
return e.raw_text return e.raw_text
def get_node_txt(ele, pre: bool = False): def get_node_txt(ele, pre: bool = False):
str_list = [] tag = ele.tag
tag = ele.tag.lower()
if tag in noText_list: # 标签内的文本不返回
return str_list
if tag == 'br': if tag == 'br':
return '\n' return '\n'
if tag == 'pre': if not pre and tag == 'pre':
pre = True pre = True
str_list = []
if tag in noText_list and not pre: # 标签内的文本不返回
return str_list
nodes = ele.eles('xpath:./text() | *') nodes = ele.eles('xpath:./text() | *')
prev_ele = '' prev_ele = ''
for el in nodes: for el in nodes:
@ -59,13 +59,13 @@ def get_ele_txt(e) -> str:
str_list.append(txt) str_list.append(txt)
else: # 元素节点 else: # 元素节点
if el.tag.lower() not in nowrap_list and str_list and str_list[-1] != '\n': # 元素间换行的情况 if el.tag not in nowrap_list and str_list and str_list[-1] != '\n': # 元素间换行的情况
str_list.append('\n') str_list.append('\n')
if el.tag.lower() in tab_list and prev_ele in tab_list: # 表格的行 if el.tag in tab_list and prev_ele in tab_list: # 表格的行
str_list.append('\t') str_list.append('\t')
str_list.extend(get_node_txt(el, pre)) str_list.extend(get_node_txt(el, pre))
prev_ele = el.tag.lower() prev_ele = el.tag
if tag in wrap_after_list and str_list and str_list[-1] != '\n': # 有些元素后面要添加回车 if tag in wrap_after_list and str_list and str_list[-1] != '\n': # 有些元素后面要添加回车
str_list.append('\n') str_list.append('\n')

View File

@ -49,14 +49,14 @@ class DriverElement(DrissionElement):
return self._inner_ele.tag_name.lower() return self._inner_ele.tag_name.lower()
@property @property
def html(self) -> str: def raw_html(self) -> str:
"""返回元素outerHTML文本""" """返回未转码的的outerHTML文本"""
return self.attr('outerHTML') return self.inner_ele.get_attribute('outerHTML')
@property @property
def inner_html(self) -> str: def inner_raw_html(self) -> str:
"""返回元素innerHTML文本""" """返回元素未转码的innerHTML文本"""
return self.attr('innerHTML') return self.inner_ele.get_attribute('innerHTML')
@property @property
def attrs(self) -> dict: def attrs(self) -> dict:
@ -80,7 +80,8 @@ class DriverElement(DrissionElement):
@property @property
def text(self) -> str: def text(self) -> str:
"""返回元素内所有文本""" """返回元素内所有文本"""
return get_ele_txt(make_session_ele(self.html)) return get_ele_txt(make_session_ele(self.raw_html))
# return get_ele_txt(self)
@property @property
def raw_text(self) -> str: def raw_text(self) -> str:

View File

@ -17,7 +17,7 @@ from selenium.webdriver.remote.webelement import WebElement
from selenium.webdriver.support.wait import WebDriverWait from selenium.webdriver.support.wait import WebDriverWait
from .base import BasePage from .base import BasePage
from .common import get_usable_path, format_html from .common import get_usable_path
from .driver_element import DriverElement, make_driver_ele, _wait_ele from .driver_element import DriverElement, make_driver_ele, _wait_ele
from .session_element import make_session_ele from .session_element import make_session_ele
@ -51,9 +51,9 @@ class DriverPage(BasePage):
return self.driver.current_url return self.driver.current_url
@property @property
def html(self) -> str: def raw_html(self) -> str:
"""返回页面html文本""" """返回页面没有转码的html文本"""
return format_html(self.driver.find_element('xpath', "//*").get_attribute("outerHTML")) return self.driver.find_element('xpath', "//*").get_attribute("outerHTML")
@property @property
def json(self) -> dict: def json(self) -> dict:

View File

@ -88,6 +88,14 @@ class MixPage(SessionPage, DriverPage, BasePage):
elif self._mode == 'd': elif self._mode == 'd':
return super(SessionPage, self).html return super(SessionPage, self).html
@property
def raw_html(self) -> str:
"""返回页面html文本"""
if self._mode == 's':
return super().raw_html
elif self._mode == 'd':
return super(SessionPage, self).raw_html
@property @property
def json(self) -> dict: def json(self) -> dict:
"""当返回内容是json格式时返回对应的字典""" """当返回内容是json格式时返回对应的字典"""

View File

@ -12,7 +12,7 @@ from lxml.etree import tostring
from lxml.html import HtmlElement, fromstring from lxml.html import HtmlElement, fromstring
from .base import DrissionElement, BasePage, BaseElement from .base import DrissionElement, BasePage, BaseElement
from .common import str_to_loc, translate_loc, format_html, get_ele_txt from .common import str_to_loc, translate_loc, get_ele_txt
class SessionElement(DrissionElement): class SessionElement(DrissionElement):
@ -39,15 +39,15 @@ class SessionElement(DrissionElement):
return self._inner_ele.tag return self._inner_ele.tag
@property @property
def html(self) -> str: def raw_html(self) -> str:
"""返回元素outerHTML文本""" """返回未转码的outerHTML文本"""
html = format_html(tostring(self._inner_ele, method="html").decode()) html = tostring(self._inner_ele, method="html").decode()
return html[:html.rfind('>') + 1] # tostring()会把跟紧元素的文本节点也带上,因此要去掉 return html[:html.rfind('>') + 1] # tostring()会把跟紧元素的文本节点也带上,因此要去掉
@property @property
def inner_html(self) -> str: def inner_raw_html(self) -> str:
"""返回元素innerHTML文本""" """返回元素未转码的innerHTML文本"""
r = match(r'<.*?>(.*)</.*?>', self.html, flags=DOTALL) r = match(r'<.*?>(.*)</.*?>', self.raw_html, flags=DOTALL)
return '' if not r else r.group(1) return '' if not r else r.group(1)
@property @property
@ -225,7 +225,7 @@ def make_session_ele(html_or_ele: Union[str, BaseElement, BasePage],
elif loc[0] == 'css selector' and loc[1].lstrip().startswith('>'): elif loc[0] == 'css selector' and loc[1].lstrip().startswith('>'):
loc_str = f'{html_or_ele.css_path}{loc[1]}' loc_str = f'{html_or_ele.css_path}{loc[1]}'
if html_or_ele.page: if html_or_ele.page:
html_or_ele = fromstring(html_or_ele.page.html) html_or_ele = fromstring(html_or_ele.page.raw_html)
else: # 接收html文本无page的情况 else: # 接收html文本无page的情况
html_or_ele = fromstring(html_or_ele('xpath:/ancestor::*').html) html_or_ele = fromstring(html_or_ele('xpath:/ancestor::*').html)
@ -245,12 +245,12 @@ def make_session_ele(html_or_ele: Union[str, BaseElement, BasePage],
# 获取整个页面html再定位到当前元素以实现查找上级元素 # 获取整个页面html再定位到当前元素以实现查找上级元素
page = html_or_ele.page page = html_or_ele.page
xpath = html_or_ele.xpath xpath = html_or_ele.xpath
html_or_ele = fromstring(html_or_ele.page.html) html_or_ele = fromstring(html_or_ele.page.raw_html)
html_or_ele = html_or_ele.xpath(xpath)[0] html_or_ele = html_or_ele.xpath(xpath)[0]
elif isinstance(html_or_ele, BasePage): # MixPage, DriverPage 或 SessionPage elif isinstance(html_or_ele, BasePage): # MixPage, DriverPage 或 SessionPage
page = html_or_ele page = html_or_ele
html_or_ele = fromstring(html_or_ele.html) html_or_ele = fromstring(html_or_ele.raw_html)
elif isinstance(html_or_ele, str): # 直接传入html文本 elif isinstance(html_or_ele, str): # 直接传入html文本
page = None page = None
@ -258,7 +258,7 @@ def make_session_ele(html_or_ele: Union[str, BaseElement, BasePage],
elif isinstance(html_or_ele, BaseElement): # ShadowRootElement elif isinstance(html_or_ele, BaseElement): # ShadowRootElement
page = html_or_ele.page page = html_or_ele.page
html_or_ele = fromstring(html_or_ele.html) html_or_ele = fromstring(html_or_ele.raw_html)
else: else:
raise TypeError('html_or_ele参数只能是元素、页面对象或html文本。') raise TypeError('html_or_ele参数只能是元素、页面对象或html文本。')

View File

@ -46,9 +46,9 @@ class SessionPage(BasePage):
return self._url return self._url
@property @property
def html(self) -> str: def raw_html(self) -> str:
"""返回页面html文本""" """返回页面已转码的html文本"""
return format_html(self.response.text) if self.response else '' return self.response.text if self.response else ''
@property @property
def json(self) -> dict: def json(self) -> dict:

View File

@ -41,10 +41,15 @@ class ShadowRootElement(BaseElement):
"""元素标签名""" """元素标签名"""
return 'shadow-root' return 'shadow-root'
# @property
# def html(self) -> str:
# """内部已转码的html文本"""
# return format_html(self.inner_ele.get_attribute('innerHTML'))
@property @property
def html(self) -> str: def raw_html(self) -> str:
"""内部html文本""" """内部没有转码的html文本"""
return format_html(self.inner_ele.get_attribute('innerHTML')) return self.inner_ele.get_attribute('innerHTML')
@property @property
def parent(self) -> DriverElement: def parent(self) -> DriverElement: