4.0.2ini增加'--hide-crash-restore-bubble'

This commit is contained in:
g1879 2024-01-16 18:16:51 +08:00
parent b8ccbb1adc
commit f48cda94f2
4 changed files with 12 additions and 6 deletions

View File

@ -14,4 +14,4 @@ from ._configs.chromium_options import ChromiumOptions
from ._configs.session_options import SessionOptions from ._configs.session_options import SessionOptions
__all__ = ['ChromiumPage', 'ChromiumOptions', 'SessionOptions', 'SessionPage', 'WebPage', '__version__'] __all__ = ['ChromiumPage', 'ChromiumOptions', 'SessionOptions', 'SessionPage', 'WebPage', '__version__']
__version__ = '4.0.0b38' __version__ = '4.0.2'

View File

@ -5,7 +5,7 @@ tmp_path =
[chromium_options] [chromium_options]
address = 127.0.0.1:9222 address = 127.0.0.1:9222
browser_path = chrome browser_path = chrome
arguments = ['--no-default-browser-check', '--disable-suggestions-ui', '--no-first-run', '--disable-infobars', '--disable-popup-blocking'] arguments = ['--no-default-browser-check', '--disable-suggestions-ui', '--no-first-run', '--disable-infobars', '--disable-popup-blocking', '--hide-crash-restore-bubble']
extensions = [] extensions = []
prefs = {'profile.default_content_settings.popups': 0, 'profile.default_content_setting_values': {'notifications': 2}} prefs = {'profile.default_content_settings.popups': 0, 'profile.default_content_setting_values': {'notifications': 2}}
flags = {} flags = {}

View File

@ -126,7 +126,10 @@ class DownloadManager(object):
:return: None :return: None
""" """
mission.state = 'canceled' mission.state = 'canceled'
self._browser.run_cdp('Browser.cancelDownload', guid=mission.id) try:
self._browser.run_cdp('Browser.cancelDownload', guid=mission.id)
except:
pass
if mission.final_path: if mission.final_path:
Path(mission.final_path).unlink(True) Path(mission.final_path).unlink(True)
@ -136,7 +139,10 @@ class DownloadManager(object):
:return: None :return: None
""" """
mission.state = 'skipped' mission.state = 'skipped'
self._browser.run_cdp('Browser.cancelDownload', guid=mission.id) try:
self._browser.run_cdp('Browser.cancelDownload', guid=mission.id)
except:
pass
def clear_tab_info(self, tab_id): def clear_tab_info(self, tab_id):
"""当tab关闭时清除有关信息 """当tab关闭时清除有关信息

View File

@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
setup( setup(
name="DrissionPage", name="DrissionPage",
version="4.0.0b38", version="4.0.2",
author="g1879", author="g1879",
author_email="g1879@qq.com", author_email="g1879@qq.com",
description="Python based web automation tool. It can control the browser and send and receive data packets.", description="Python based web automation tool. It can control the browser and send and receive data packets.",
@ -37,7 +37,7 @@ setup(
python_requires='>=3.6', python_requires='>=3.6',
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'dp = DrissionPage.commons.cli:main', 'dp = DrissionPage.functions.cli:main',
], ],
}, },
) )