This commit is contained in:
g1879 2020-11-25 23:13:28 +08:00
parent 161bbb92ad
commit e31472613f
2 changed files with 33 additions and 11 deletions

View File

@ -955,17 +955,20 @@ drission = Drission(ini_path='D:\\settings.ini') # Use the specified ini file to
## easy_set method
The methods of frequently used settings can be quickly modified. Calling the easy_set method will modify the content of the default ini file.
Methods to quickly modify common settings. All for driver mode settings. Calling the easy_set method will modify the content of the default ini file.
```python
set_headless(True) # Turn on headless mode
set_no_imgs(True) # Turn on no image mode
set_no_js(True) # Disable JS
set_mute(True) # Turn on mute mode
set_user_agent('Mozilla/5.0 (Macintosh; Int......') # set user agent
set_proxy('127.0.0.1:8888') # set proxy
set_paths(paths) # See [Initialization] section
set_argument(arg, value) # Set the attribute. If the attribute has no value (such as'zh_CN.UTF- 8'), the value is bool, which means switch; otherwise, the value is str. When the value is'' or False, delete the attribute item
get_match_driver() # Identify the chrome version and automatically download the matching chromedriver.exe
show_settings() # Print all settings
set_headless(True) # Turn on headless mode
set_no_imgs(True) # Turn on no image mode
set_no_js(True) # Disable JS
set_mute(True) # Turn on mute mode
set_user_agent('Mozilla/5.0 (Macintosh; Int......') # set user agent
set_proxy('127.0.0.1:8888') # set proxy
set_paths(paths) # See [Initialization] section
set_argument(arg, value) # Set the attribute. If the attribute has no value (such as'zh_CN.UTF-8'), the value is bool to indicate the switch; otherwise, the value is str. When the value is'' or False, delete the attribute item
check_driver_version() # Check if chrome and chromedriver versions match
```
# POM mode

View File

@ -827,7 +827,7 @@ page.download(url, save_path, 'img', 'rename', show_msg=True)
## Chrome 快捷设置
## Chrome 设置
chrome 的配置很繁琐,为简化使用,本库提供了常用配置的设置方法。
@ -872,6 +872,22 @@ do.save('default') # 保存当前设置到默认 ini 文件
## Session 设置
### SessionOPtions 对象
SessionOptions 对象用于管理 Session 的配置信息。它创建时默认读取默认 ini 文件配置信息,也可手动设置所需信息。
### 使用方法
## 保存配置
因 chrome 和 headers 配置繁多,故设置一个 ini 文件专门用于保存常用配置,你可使用 OptionsManager 对象获取和保存配置,用 DriverOptions 对象修改 chrome 配置。你也可以保存多个 ini 文件,按不同项目须要调用。
@ -971,9 +987,11 @@ drission = Drission(ini_path='D:\\settings.ini') # 使用指定 ini 文件创
## easy_set 方法
可快速地修改常用设置的方法调用 easy_set 方法会修改默认 ini 文件相关内容。
可快速地修改常用设置的方法。全部用于 driver 模式的设置。调用 easy_set 方法会修改默认 ini 文件相关内容。
```python
get_match_driver() # 识别chrome版本并自动下载匹配的chromedriver.exe
show_settings() # 打印所有设置
set_headless(True) # 开启 headless 模式
set_no_imgs(True) # 开启无图模式
set_no_js(True) # 禁用 JS
@ -982,6 +1000,7 @@ set_user_agent('Mozilla/5.0 (Macintosh; Int......') # 设置 user agent
set_proxy('127.0.0.1:8888') # 设置代理
set_paths(paths) # 见 [初始化] 一节
set_argument(arg, value) # 设置属性,若属性无值(如'zh_CN.UTF-8'value 为 bool 表示开关否则value为str当 value为''或 False删除该属性项
check_driver_version() # 检查chrome和chromedriver版本是否匹配
```
# POM 模式