From 775e9d5ca24c91e1449cc1b6831f4ccd9deaa5ce Mon Sep 17 00:00:00 2001 From: g1879 Date: Sun, 27 Dec 2020 10:47:45 +0800 Subject: [PATCH] 1.7.8 --- README.en.md | 34 +++++++++++++++++++++++++--------- README.zh-cn.md | 11 +++++++++-- setup.py | 2 +- 3 files changed, 35 insertions(+), 12 deletions(-) diff --git a/README.en.md b/README.en.md index 78aa983..83d9e4d 100644 --- a/README.en.md +++ b/README.en.md @@ -318,26 +318,42 @@ The get_match_driver() method in the easy_set tool can automatically identify th from DrissionPage import MixPage ``` - - ## Initialization If you only use session mode, you can skip this section. -Before using selenium, you must configure the path of chrome.exe and chromedriver.exe and ensure that their versions match. +Before using selenium, you must configure the path of chrome.exe and chromedriver.exe and ensure that their versions +match. +In the new version, if the program finds that their versions do not match when running, it will automatically download +the corresponding version and set the path. If there is no special need, no manual intervention is required. There are four ways to configure the path: --Use the get_match_driver() method of the easy_set tool (recommended) --Write the path to the ini file of this library --Write two paths to system variables --Manually pass in the path when using -### Use get_match_driver() method +- Run directly, let the program automatically complete the settings (recommended) -If you choose the first method, please run the following code before using it for the first time. The program will automatically detect the Chrome version installed on your computer, download the corresponding driver, and record it in the ini file. +- Use the get_match_driver() method of the easy_set tool + +- Write the path to the ini file of this library + +- Write two paths to system variables + +- Fill in the path in the code + +**auto configuration** + +In the new version, you don't need to do any configuration, just run the program directly, the program will get the path +of chrome.exe in the system, and automatically download the chromedriver.exe that matches the version. No feeling at +all. If you need to set the chrome.exe used by yourself, you can use the following method. + +**Use the get_match_driver() method** + +If you choose this method, please run the following code before using it for the first time. The program will +automatically detect the chrome version installed on your computer, download the corresponding driver, and record it in +the ini file. ```python from DrissionPage.easy_set import get_match_driver + get_match_driver() ``` diff --git a/README.zh-cn.md b/README.zh-cn.md index e229543..5959311 100644 --- a/README.zh-cn.md +++ b/README.zh-cn.md @@ -315,16 +315,23 @@ from DrissionPage import MixPage > 如果你只使用 session 模式,可跳过本节。 使用 selenium 前,必须配置 chrome.exe 和 chromedriver.exe 的路径,并确保它们版本匹配。 +新版本中,运行时若程序发现它们版本不匹配,会自动下载对应版本并设置路径。如无特殊须要,无须手动干预。 配置路径有四种方法: -- 使用 easy_set 工具的 get_match_driver() 方法(推荐) + +- 直接运行,让程序自动完成设置(推荐) +- 使用 easy_set 工具的 get_match_driver() 方法 - 将路径写入本库的 ini 文件 - 将两个路径写入系统变量 - 在代码中填写路径 +**自动设置** + +新版本中,您无须做任何配置,只要直接运行程序,程序会获取系统中 chrome.exe 路径,并自动下载版本匹配的 chromedriver.exe。全程无感。如须自行设置所使用的 chrome.exe,可用下面的方法。 + **使用 get_match_driver() 方法** -若你选择第一种方式,请在第一次使用前,运行以下代码,程序会自动检测电脑安装的 chrome 版本,下载对应 driver,并记录到 ini 文件。 +若你选择这种方式,请在第一次使用前,运行以下代码,程序会自动检测电脑安装的 chrome 版本,下载对应 driver,并记录到 ini 文件。 ```python from DrissionPage.easy_set import get_match_driver diff --git a/setup.py b/setup.py index 458c8d0..779358a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ with open("README.md", "r", encoding='utf-8') as fh: setup( name="DrissionPage", - version="1.7.7", + version="1.7.8", author="g1879", author_email="g1879@qq.com", description="A module that integrates selenium and requests session, encapsulates common page operations.",