截图不再自动重命名;修改录屏未完成

This commit is contained in:
g1879 2023-12-26 17:11:48 +08:00
parent 23881d03a3
commit 8c870c1c3e
4 changed files with 8 additions and 5 deletions

View File

@ -123,7 +123,7 @@ class Browser(object):
:param url: 要匹配url的文本
:param tab_type: tab类型可用列表输入多个
:param single: 是否返回首个结果的id为False返回所有信息
:return: tab id或tab dict
:return: tab id或tab列表
"""
tabs = self._driver.get(f'http://{self.address}/json').json() # 不要改用cdp

View File

@ -5,6 +5,7 @@
"""
from json import loads, JSONDecodeError
from os.path import sep
from pathlib import Path
from re import findall, match
from threading import Thread
from time import perf_counter, sleep
@ -16,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 get_usable_path, raise_error
from .._functions.tools import raise_error
from .._functions.web import location_in_viewport
from .._units.actions import Actions
from .._units.listener import Listener
@ -1021,7 +1022,7 @@ class ChromiumBase(BasePage):
name = f'{name}.jpg'
path = f'{path}{sep}{name}'
path = get_usable_path(path)
path = Path(path)
pic_type = path.suffix.lower()
pic_type = 'jpeg' if pic_type == '.jpg' else pic_type[1:]

View File

@ -162,7 +162,7 @@ class ChromiumPage(ChromiumBase):
:param url: 要匹配url的文本
:param tab_type: tab类型可用列表输入多个
:param single: 是否返回首个结果的id为False返回所有信息
:return: tab id或tab dict
:return: tab id或tab列表
"""
return self._browser.find_tabs(title, url, tab_type, single)

View File

@ -33,7 +33,9 @@ class Screencast(object):
self.set_save_path(save_path)
if self._path is None:
raise ValueError('save_path必须设置。')
clean_folder(self._path)
tmp = self._path / 'tmp'
tmp.mkdir(parents=True, exist_ok=True)
clean_folder(tmp)
if self._mode.startswith('frugal'):
self._page.driver.set_callback('Page.screencastFrame', self._onScreencastFrame)
self._page.run_cdp('Page.startScreencast', everyNthFrame=1, quality=100)