mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
创建Drission对象时可指定ini文件
This commit is contained in:
parent
1f7ae21ff5
commit
32c848d227
@ -19,19 +19,19 @@ from .config import _dict_to_chrome_options, OptionsManager
|
|||||||
|
|
||||||
|
|
||||||
class Drission(object):
|
class Drission(object):
|
||||||
"""Drission类整合了WebDriver对象和HTLSession对象,可按要求创建、关闭及同步cookies
|
"""Drission类整合了WebDriver对象和HTLSession对象,可按要求创建、关闭及同步cookies"""
|
||||||
"""
|
|
||||||
|
|
||||||
def __init__(self, driver_options: Union[dict, Options] = None, session_options: dict = None,
|
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实例
|
"""初始化配置信息,但不生成session和driver实例
|
||||||
:param driver_options: chrome设置,Options类或设置字典
|
:param driver_options: chrome设置,Options类或设置字典
|
||||||
:param session_options: session设置
|
:param session_options: session设置
|
||||||
:param driver_path: chromedriver路径,如为空,则为'chromedriver'
|
:param driver_path: chromedriver路径,如为空,则为'chromedriver'
|
||||||
|
:param ini_path: ini文件路径'
|
||||||
"""
|
"""
|
||||||
self._session = None
|
self._session = None
|
||||||
self._driver = None
|
self._driver = None
|
||||||
om = OptionsManager()
|
om = OptionsManager(ini_path)
|
||||||
self._session_options = session_options or om.get_option('session_options')
|
self._session_options = session_options or om.get_option('session_options')
|
||||||
self._driver_options = driver_options or om.get_option('chrome_options')
|
self._driver_options = driver_options or om.get_option('chrome_options')
|
||||||
|
|
||||||
|
11
README.en.md
11
README.en.md
@ -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.
|
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
|
```python
|
||||||
# Created by ini file
|
# Created by default ini file
|
||||||
drission = Drission()
|
drission = Drission()
|
||||||
|
|
||||||
|
# Created by other ini files
|
||||||
|
drission = Drission(ini_path = 'D:\\settings.ini')
|
||||||
```
|
```
|
||||||
|
|
||||||
To manually pass in the configuration:
|
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
|
options_manager = OptionsManager() # Create OptionsManager object
|
||||||
driver_path = options_manager.get_value('paths', 'chromedriver_path') # Read path information
|
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(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
|
### OptionsManager object
|
||||||
@ -487,7 +491,7 @@ print(page.ele('@id:su').text) # Output:百度一下
|
|||||||
|
|
||||||
## Drission class
|
## 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.
|
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
|
- driver_options - Chrome configuration parameters, can receive Options object or dictionary
|
||||||
- session_options - session configuration parameters, receive dictionary
|
- session_options - session configuration parameters, receive dictionary
|
||||||
- driver_path - chromedriver.exe path, if not set, system variables must be set in the system
|
- 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
|
### session
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user