From ea962f3c2b1a01470f8c5d01620b2c7996d63f06 Mon Sep 17 00:00:00 2001 From: g1879 Date: Mon, 25 May 2020 23:48:47 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=80=E5=8C=96chrome=5Fdownloading?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DrissionPage/driver_page.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/DrissionPage/driver_page.py b/DrissionPage/driver_page.py index 191a199..f04ecc6 100644 --- a/DrissionPage/driver_page.py +++ b/DrissionPage/driver_page.py @@ -210,13 +210,6 @@ class DriverPage(object): new_y = y or self.driver.get_window_size()['height'] self.driver.set_window_size(new_x, new_y) - def is_downloading(self, download_path: str = None) -> bool: - if download_path: - p = download_path - else: - try: - p = OptionsManager().get_value('chrome_options', 'experimental_options')['prefs'][ - 'download.default_directory'] - except IOError('No download path found.'): - raise - return not glob(f'{p}\\*.crdownload') + def chrome_downloading(self, download_path: str) -> list: + """检查下载情况""" + return glob(f'{download_path}\\*.crdownload')