4.0.0b31完善Driver的stop()逻辑;优化录像保存逻辑;页面对象增加save()

This commit is contained in:
g1879 2023-12-27 17:29:42 +08:00
parent eaad58da9e
commit 221204b2f2

View File

@ -17,7 +17,7 @@ from .._elements.none_element import NoneElement
from .._elements.session_element import make_session_ele
from .._functions.locator import get_loc, is_loc
from .._functions.settings import Settings
from .._functions.tools import raise_error
from .._functions.tools import raise_error, make_valid_name
from .._functions.web import location_in_viewport
from .._units.actions import Actions
from .._units.listener import Listener
@ -1165,7 +1165,8 @@ def get_mhtml(page, path=None, name=None):
"""
r = page.run_cdp('Page.captureSnapshot')['data']
path = path or '.'
name = name or page.title
Path(path).mkdir(parents=True, exist_ok=True)
name = make_valid_name(name or page.title)
with open(f'{path}{sep}{name}.mhtml', 'w', encoding='utf-8') as f:
f.write(r)
return r