mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
1.7.8
This commit is contained in:
parent
9e923c8f55
commit
775e9d5ca2
30
README.en.md
30
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)
|
||||
|
||||
- Run directly, let the program automatically complete the settings (recommended)
|
||||
|
||||
- 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
|
||||
-Manually pass in the path when using
|
||||
|
||||
### Use get_match_driver() method
|
||||
- Fill in the path in the code
|
||||
|
||||
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.
|
||||
**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()
|
||||
```
|
||||
|
||||
|
@ -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
|
||||
|
2
setup.py
2
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.",
|
||||
|
Loading…
x
Reference in New Issue
Block a user