增加CookieFormatError;动作链type()text参数改为keys,input()参数改为text

This commit is contained in:
g1879 2023-12-13 15:34:58 +08:00
parent ce2d14c34e
commit 731d40a891
4 changed files with 16 additions and 10 deletions

View File

@ -13,7 +13,7 @@ from psutil import process_iter, AccessDenied, NoSuchProcess, ZombieProcess
from .._configs.options_manage import OptionsManager
from ..errors import (ContextLostError, ElementLostError, CDPError, PageClosedError, NoRectError, AlertExistsError,
WrongURLError, StorageError)
WrongURLError, StorageError, CookieFormatError)
def get_usable_path(path, is_file=True, parents=True):
@ -278,6 +278,8 @@ def raise_error(r):
raise WrongURLError(f'无效的url{r["args"]["url"]}。也许要加上"http://"')
elif error == 'Frame corresponds to an opaque origin and its storage key cannot be serialized':
raise StorageError
elif error == 'Sanitizing cookie failed':
raise CookieFormatError(f'cookie格式不正确{r["args"]}')
elif r['type'] == 'call_method_error':
raise CDPError(f'\n错误:{r["error"]}\nmethod{r["method"]}\nargs{r["args"]}\n出现这个错误可能意味着程序有bug'
'请把错误信息和重现方法告知作者,谢谢。\n报告网站https://gitee.com/g1879/DrissionPage/issues')

View File

@ -268,24 +268,24 @@ class Actions:
self.page.run_cdp('Input.dispatchKeyEvent', **data)
return self
def type(self, text):
"""用模拟键盘按键方式输入文本,可输入字符串,只能输入键盘上有的字符
:param text: 要输入的文本特殊字符和多个文本可用list或tuple传入
def type(self, keys):
"""用模拟键盘按键方式输入文本,可输入字符串,也可输入组合键,只能输入键盘上有的字符
:param keys: 要按下的按键特殊字符和多个文本可用list或tuple传入
:return: self
"""
for i in text:
for i in keys:
for character in i:
self.key_down(character)
sleep(.05)
self.key_up(character)
return self
def input(self, text_or_keys):
def input(self, text):
"""输入文本也可输入组合键组合键用tuple形式输入
:param text_or_keys: 文本值或按键组合
:param text: 文本值或按键组合
:return: self
"""
input_text_or_keys(self.page, text_or_keys)
input_text_or_keys(self.page, text)
return self
def wait(self, second):

View File

@ -93,9 +93,9 @@ class Actions:
def key_up(self, key: KEYS) -> Actions: ...
def type(self, text: Union[str, list, tuple]) -> Actions: ...
def type(self, keys: Union[str, list, tuple]) -> Actions: ...
def input(self, text_or_keys: Any) -> Actions: ...
def input(self, text: Any) -> Actions: ...
def wait(self, second: float) -> Actions: ...

View File

@ -83,3 +83,7 @@ class WrongURLError(BaseError):
class StorageError(BaseError):
_info = '无法操作当前存储数据。'
class CookieFormatError(BaseError):
_info = 'cookie格式不正确。'