mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
25 lines
643 B
Python
25 lines
643 B
Python
# -*- coding:utf-8 -*-
|
|
"""
|
|
@Author : g1879
|
|
@Contact : g1879@qq.com
|
|
@Copyright: (c) 2020 by g1879, Inc. All Rights Reserved.
|
|
"""
|
|
from pathlib import Path
|
|
from typing import Optional, Union
|
|
|
|
|
|
class Settings(object):
|
|
raise_when_ele_not_found: bool = ...
|
|
raise_when_click_failed: bool = ...
|
|
raise_when_wait_failed: bool = ...
|
|
singleton_tab_obj: bool = ...
|
|
cdp_timeout: float = ...
|
|
browser_connect_timeout: float = ...
|
|
auto_handle_alert: Optional[bool] = ...
|
|
_suffixes_list: str = ...
|
|
|
|
@property
|
|
def suffixes_list_path(self) -> str:
|
|
"""设置用于识别域名后缀的文件路径"""
|
|
...
|