mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
1.11.3
This commit is contained in:
parent
ff91b76065
commit
0ebcebc482
@ -268,7 +268,7 @@ class SessionOptions(object):
|
|||||||
:param headers: 参数值
|
:param headers: 参数值
|
||||||
:return: None
|
:return: None
|
||||||
"""
|
"""
|
||||||
self._headers = {key.lower(): headers[key] for key in headers}
|
self.set_headers(headers)
|
||||||
|
|
||||||
@cookies.setter
|
@cookies.setter
|
||||||
def cookies(self, cookies: Union[RequestsCookieJar, list, tuple, str, dict]) -> None:
|
def cookies(self, cookies: Union[RequestsCookieJar, list, tuple, str, dict]) -> None:
|
||||||
@ -679,12 +679,15 @@ def _dict_to_chrome_options(options: dict) -> Options:
|
|||||||
return chrome_options
|
return chrome_options
|
||||||
|
|
||||||
|
|
||||||
def _chrome_options_to_dict(options: Union[dict, DriverOptions, Options, None]) -> Union[dict, None]:
|
def _chrome_options_to_dict(options: Union[dict, DriverOptions, Options, None, bool]) -> Union[dict, None]:
|
||||||
"""把chrome配置对象转换为字典 \n
|
"""把chrome配置对象转换为字典 \n
|
||||||
:param options: chrome配置对象,字典或DriverOptions对象
|
:param options: chrome配置对象,字典或DriverOptions对象
|
||||||
:return: 配置字典
|
:return: 配置字典
|
||||||
"""
|
"""
|
||||||
if isinstance(options, (dict, type(None))):
|
if options in (False, None):
|
||||||
|
return DriverOptions(read_file=False).as_dict()
|
||||||
|
|
||||||
|
if isinstance(options, dict):
|
||||||
return options
|
return options
|
||||||
|
|
||||||
re_dict = dict()
|
re_dict = dict()
|
||||||
@ -702,7 +705,10 @@ def _session_options_to_dict(options: Union[dict, SessionOptions, None]) -> Unio
|
|||||||
:param options: session配置对象或字典
|
:param options: session配置对象或字典
|
||||||
:return: 配置字典
|
:return: 配置字典
|
||||||
"""
|
"""
|
||||||
if isinstance(options, (dict, type(None))):
|
if options in (False, None):
|
||||||
|
return SessionOptions(read_file=False).as_dict()
|
||||||
|
|
||||||
|
if isinstance(options, dict):
|
||||||
return options
|
return options
|
||||||
|
|
||||||
re_dict = dict()
|
re_dict = dict()
|
||||||
@ -718,7 +724,7 @@ def _session_options_to_dict(options: Union[dict, SessionOptions, None]) -> Unio
|
|||||||
if val is not None:
|
if val is not None:
|
||||||
re_dict[attr] = val
|
re_dict[attr] = val
|
||||||
|
|
||||||
# cert属性默认值为None,未免无法区分是否被设置,故主动赋值
|
# cert属性默认值为None,为免无法区分是否被设置,故主动赋值
|
||||||
re_dict['cert'] = options.__getattribute__('_cert')
|
re_dict['cert'] = options.__getattribute__('_cert')
|
||||||
re_dict['auth'] = options.__getattribute__('_auth')
|
re_dict['auth'] = options.__getattribute__('_auth')
|
||||||
|
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
[paths]
|
[paths]
|
||||||
chromedriver_path = D:\python\projects\DrissionPage\DrissionPage\chromedriver.exe
|
chromedriver_path =
|
||||||
tmp_path = D:\python\projects\DrissionPage\DrissionPage\tmp
|
tmp_path =
|
||||||
|
|
||||||
[chrome_options]
|
[chrome_options]
|
||||||
debugger_address =
|
debugger_address =
|
||||||
binary_location = d:\python\google chrome\chrome\chrome.exe
|
binary_location =
|
||||||
arguments = ['--no-sandbox', '--disable-gpu', '--ignore-certificate-errors', '--disable-infobars']
|
arguments = ['--no-sandbox', '--disable-gpu', '--ignore-certificate-errors', '--disable-infobars']
|
||||||
extensions = []
|
extensions = []
|
||||||
experimental_options = {'prefs': {'profile.default_content_settings.popups': 0, 'profile.default_content_setting_values': {'notifications': 2}, 'plugins.plugins_list': [{'enabled': False, 'name': 'Chrome PDF Viewer'}]}, 'useAutomationExtension': False, 'excludeSwitches': ['enable-automation']}
|
experimental_options = {'prefs': {'profile.default_content_settings.popups': 0, 'profile.default_content_setting_values': {'notifications': 2}, 'plugins.plugins_list': [{'enabled': False, 'name': 'Chrome PDF Viewer'}]}, 'useAutomationExtension': False, 'excludeSwitches': ['enable-automation']}
|
||||||
|
|
||||||
[session_options]
|
[session_options]
|
||||||
headers = {
|
headers = {
|
||||||
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8",
|
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8",
|
||||||
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
|
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
|
||||||
"Connection": "keep-alive",
|
"Connection": "keep-alive",
|
||||||
"Accept-Charset": "GB2312,utf-8;q=0.7,*;q=0.7"
|
"Accept-Charset": "GB2312,utf-8;q=0.7,*;q=0.7"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ class Drission(object):
|
|||||||
"""Drission类用于管理WebDriver对象和Session对象,是驱动器的角色"""
|
"""Drission类用于管理WebDriver对象和Session对象,是驱动器的角色"""
|
||||||
|
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
driver_or_options: Union[WebDriver, dict, Options, DriverOptions] = None,
|
driver_or_options: Union[WebDriver, dict, Options, DriverOptions, bool] = None,
|
||||||
session_or_options: Union[Session, dict, SessionOptions] = None,
|
session_or_options: Union[Session, dict, SessionOptions, bool] = None,
|
||||||
ini_path: str = None,
|
ini_path: str = None,
|
||||||
proxy: dict = None):
|
proxy: dict = None):
|
||||||
"""初始化,可接收现成的WebDriver和Session对象,或接收它们的配置信息生成对象 \n
|
"""初始化,可接收现成的WebDriver和Session对象,或接收它们的配置信息生成对象 \n
|
||||||
|
@ -41,10 +41,12 @@ class MixPage(SessionPage, DriverPage, BasePage):
|
|||||||
:param driver_options: 浏览器设置,没有传入drission参数时会用这个设置新建Drission对象
|
:param driver_options: 浏览器设置,没有传入drission参数时会用这个设置新建Drission对象
|
||||||
:param session_options: requests设置,没有传入drission参数时会用这个设置新建Drission对象
|
:param session_options: requests设置,没有传入drission参数时会用这个设置新建Drission对象
|
||||||
"""
|
"""
|
||||||
super().__init__(timeout) # BasePage的__init__()
|
super(DriverPage, self).__init__(timeout) # BasePage的__init__()
|
||||||
self._mode = mode.lower()
|
self._mode = mode.lower()
|
||||||
self._driver, self._session = (None, True) if self._mode == 's' else (True, None)
|
self._driver, self._session = (None, True) if self._mode == 's' else (True, None)
|
||||||
self._drission = drission or Drission(driver_options, session_options)
|
self._drission = drission or Drission(driver_options, session_options)
|
||||||
|
self._wait_object = None
|
||||||
|
self._response = None
|
||||||
|
|
||||||
def __call__(self,
|
def __call__(self,
|
||||||
loc_or_str: Union[Tuple[str, str], str, DriverElement, SessionElement, WebElement],
|
loc_or_str: Union[Tuple[str, str], str, DriverElement, SessionElement, WebElement],
|
||||||
|
2
setup.py
2
setup.py
@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="DrissionPage",
|
name="DrissionPage",
|
||||||
version="1.11.0",
|
version="1.11.3",
|
||||||
author="g1879",
|
author="g1879",
|
||||||
author_email="g1879@qq.com",
|
author_email="g1879@qq.com",
|
||||||
description="A module that integrates selenium and requests session, encapsulates common page operations.",
|
description="A module that integrates selenium and requests session, encapsulates common page operations.",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user