mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
2.2.1。set_paths()增加local_port参数;ini文件的默认参数改成默认用本地9222端口打开浏览器;修复相对定位的一个问题
This commit is contained in:
parent
c4ae8f4a03
commit
b363dfccdf
@ -239,7 +239,7 @@ class DrissionElement(BaseElement):
|
|||||||
loc = loc[1].lstrip('./')
|
loc = loc[1].lstrip('./')
|
||||||
|
|
||||||
if index:
|
if index:
|
||||||
loc = f'xpath:(./{direction}{brother}::{loc})[{index}]' # TODO: 有没有括号是否有区别
|
loc = f'xpath:./{direction}{brother}::{loc}[{index}]'
|
||||||
else:
|
else:
|
||||||
loc = f'xpath:./{direction}{brother}::{loc}'
|
loc = f'xpath:./{direction}{brother}::{loc}'
|
||||||
|
|
||||||
|
@ -599,6 +599,7 @@ class DriverOptions(Options):
|
|||||||
def set_paths(self,
|
def set_paths(self,
|
||||||
driver_path: str = None,
|
driver_path: str = None,
|
||||||
chrome_path: str = None,
|
chrome_path: str = None,
|
||||||
|
local_port: Union[int, str] = None,
|
||||||
debugger_address: str = None,
|
debugger_address: str = None,
|
||||||
download_path: str = None,
|
download_path: str = None,
|
||||||
user_data_path: str = None,
|
user_data_path: str = None,
|
||||||
@ -606,6 +607,7 @@ class DriverOptions(Options):
|
|||||||
"""快捷的路径设置函数 \n
|
"""快捷的路径设置函数 \n
|
||||||
:param driver_path: chromedriver.exe路径
|
:param driver_path: chromedriver.exe路径
|
||||||
:param chrome_path: chrome.exe路径
|
:param chrome_path: chrome.exe路径
|
||||||
|
:param local_port: 本地端口号
|
||||||
:param debugger_address: 调试浏览器地址,例:127.0.0.1:9222
|
:param debugger_address: 调试浏览器地址,例:127.0.0.1:9222
|
||||||
:param download_path: 下载文件路径
|
:param download_path: 下载文件路径
|
||||||
:param user_data_path: 用户数据路径
|
:param user_data_path: 用户数据路径
|
||||||
@ -618,6 +620,9 @@ class DriverOptions(Options):
|
|||||||
if chrome_path is not None:
|
if chrome_path is not None:
|
||||||
self.binary_location = chrome_path
|
self.binary_location = chrome_path
|
||||||
|
|
||||||
|
if local_port is not None:
|
||||||
|
self.debugger_address = f'127.0.0.1:{local_port}'
|
||||||
|
|
||||||
if debugger_address is not None:
|
if debugger_address is not None:
|
||||||
self.debugger_address = debugger_address
|
self.debugger_address = debugger_address
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ chromedriver_path =
|
|||||||
tmp_path =
|
tmp_path =
|
||||||
|
|
||||||
[chrome_options]
|
[chrome_options]
|
||||||
debugger_address =
|
debugger_address = 127.0.0.1:9222
|
||||||
binary_location =
|
binary_location =
|
||||||
arguments = ['--no-sandbox', '--disable-gpu', '--ignore-certificate-errors', '--disable-infobars']
|
arguments = ['--no-sandbox', '--disable-gpu', '--ignore-certificate-errors', '--disable-infobars']
|
||||||
extensions = []
|
extensions = []
|
||||||
|
@ -31,6 +31,7 @@ def show_settings(ini_path: str = None) -> None:
|
|||||||
|
|
||||||
def set_paths(driver_path: str = None,
|
def set_paths(driver_path: str = None,
|
||||||
chrome_path: str = None,
|
chrome_path: str = None,
|
||||||
|
local_port: Union[int, str] = None,
|
||||||
debugger_address: str = None,
|
debugger_address: str = None,
|
||||||
tmp_path: str = None,
|
tmp_path: str = None,
|
||||||
download_path: str = None,
|
download_path: str = None,
|
||||||
@ -41,6 +42,7 @@ def set_paths(driver_path: str = None,
|
|||||||
"""快捷的路径设置函数 \n
|
"""快捷的路径设置函数 \n
|
||||||
:param driver_path: chromedriver.exe路径
|
:param driver_path: chromedriver.exe路径
|
||||||
:param chrome_path: chrome.exe路径
|
:param chrome_path: chrome.exe路径
|
||||||
|
:param local_port: 本地端口号
|
||||||
:param debugger_address: 调试浏览器地址,例:127.0.0.1:9222
|
:param debugger_address: 调试浏览器地址,例:127.0.0.1:9222
|
||||||
:param download_path: 下载文件路径
|
:param download_path: 下载文件路径
|
||||||
:param tmp_path: 临时文件夹路径
|
:param tmp_path: 临时文件夹路径
|
||||||
@ -53,7 +55,7 @@ def set_paths(driver_path: str = None,
|
|||||||
om = OptionsManager(ini_path)
|
om = OptionsManager(ini_path)
|
||||||
|
|
||||||
def format_path(path: str) -> str:
|
def format_path(path: str) -> str:
|
||||||
return '' if not path else str(path).replace('/', '\\')
|
return path or ''
|
||||||
|
|
||||||
if driver_path is not None:
|
if driver_path is not None:
|
||||||
om.set_item('paths', 'chromedriver_path', format_path(driver_path))
|
om.set_item('paths', 'chromedriver_path', format_path(driver_path))
|
||||||
@ -61,6 +63,9 @@ def set_paths(driver_path: str = None,
|
|||||||
if chrome_path is not None:
|
if chrome_path is not None:
|
||||||
om.set_item('chrome_options', 'binary_location', format_path(chrome_path))
|
om.set_item('chrome_options', 'binary_location', format_path(chrome_path))
|
||||||
|
|
||||||
|
if local_port is not None:
|
||||||
|
om.set_item('chrome_options', 'debugger_address', format_path(f'127.0.0.1:{local_port}'))
|
||||||
|
|
||||||
if debugger_address is not None:
|
if debugger_address is not None:
|
||||||
om.set_item('chrome_options', 'debugger_address', format_path(debugger_address))
|
om.set_item('chrome_options', 'debugger_address', format_path(debugger_address))
|
||||||
|
|
||||||
|
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="2.2.0",
|
version="2.2.1",
|
||||||
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