创建Drission对象时可指定ini文件

This commit is contained in:
g1879 2020-05-25 15:37:13 +08:00
parent 1f7ae21ff5
commit 32c848d227
3 changed files with 12 additions and 1304 deletions

View File

@ -19,19 +19,19 @@ from .config import _dict_to_chrome_options, OptionsManager
class Drission(object):
"""Drission类整合了WebDriver对象和HTLSession对象可按要求创建、关闭及同步cookies
"""
"""Drission类整合了WebDriver对象和HTLSession对象可按要求创建、关闭及同步cookies"""
def __init__(self, driver_options: Union[dict, Options] = None, session_options: dict = None,
driver_path: str = None):
driver_path: str = None, ini_path: str = None):
"""初始化配置信息但不生成session和driver实例
:param driver_options: chrome设置Options类或设置字典
:param session_options: session设置
:param driver_path: chromedriver路径如为空则为'chromedriver'
:param ini_path: ini文件路径'
"""
self._session = None
self._driver = None
om = OptionsManager()
om = OptionsManager(ini_path)
self._session_options = session_options or om.get_option('session_options')
self._driver_options = driver_options or om.get_option('chrome_options')

View File

@ -159,8 +159,11 @@ Tips
Drission objects are used to manage driver and session objects. It can be created by directly reading the configuration information of the ini file, or it can be passed in during initialization.
```python
# Created by ini file
# Created by default ini file
drission = Drission()
# Created by other ini files
drission = Drission(ini_path = 'D:\\settings.ini')
```
To manually pass in the configuration:
@ -357,8 +360,9 @@ driver_options.save('D:\\settings.ini') # Save to other path
options_manager = OptionsManager() # Create OptionsManager object
driver_path = options_manager.get_value('paths', 'chromedriver_path') # Read path information
drission = Drission(driver_options, driver_path) # Create a Drission object using configuration
drission = Drission(ini_path = 'D:\\settings.ini') # Use other ini files to create objects
```
### OptionsManager object
@ -487,7 +491,7 @@ print(page.ele('@id:su').text) # Output:百度一下
## Drission class
class **Drission**(driver_options: Union[dict, Options] = None, session_options: dict = None, driver_path: str = None)
class **Drission**(driver_options: Union[dict, Options] = None, session_options: dict = None, driver_path: str = None, ini_path = None)
Used to manage driver and session objects.
@ -496,6 +500,7 @@ print(page.ele('@id:su').text) # Output:百度一下
- driver_options - Chrome configuration parameters, can receive Options object or dictionary
- session_options - session configuration parameters, receive dictionary
- driver_path - chromedriver.exe path, if not set, system variables must be set in the system
- ini_path - ini file path, the default is the ini file in the DrissionPage folder
### session

1297
README.md

File diff suppressed because it is too large Load Diff