设置功能增加browser_path参数和属性;connect_chrome()改为connect_browser()

This commit is contained in:
g1879 2023-01-10 11:56:46 +08:00
parent c72f4ba8d9
commit 568a2a3444
13 changed files with 62 additions and 31 deletions

View File

@ -12,7 +12,7 @@ from requests import Session
from .chromium_base import Timeout, ChromiumBase
from .chromium_tab import ChromiumTab
from .common import connect_chrome
from .common import connect_browser
from .config import DriverOptions
from .chromium_driver import ChromiumDriver
@ -47,7 +47,7 @@ class ChromiumPage(ChromiumBase):
if addr_driver_opts is None or isinstance(addr_driver_opts, DriverOptions):
self.options = addr_driver_opts or DriverOptions() # 从ini文件读取
self.address = self.options.debugger_address
self.process = connect_chrome(self.options)[1]
self.process = connect_browser(self.options)[1]
json = self._control_session.get(f'http://{self.address}/json').json()
tab_id = [i['id'] for i in json if i['type'] == 'page'][0]
@ -56,7 +56,7 @@ class ChromiumPage(ChromiumBase):
self.address = addr_driver_opts
self.options = DriverOptions(read_file=False)
self.options.debugger_address = addr_driver_opts
self.process = connect_chrome(self.options)[1]
self.process = connect_browser(self.options)[1]
if not tab_id:
json = self._control_session.get(f'http://{self.address}/json').json()
tab_id = [i['id'] for i in json if i['type'] == 'page'][0]

View File

@ -514,14 +514,14 @@ def _port_is_using(ip: str, port: str) -> Union[bool, None]:
s.close()
def connect_chrome(option):
"""连接或启动chrome \n
def connect_browser(option):
"""连接或启动浏览器 \n
:param option: DriverOptions对象
:return: chrome 路径和进程对象组成的元组
"""
system_type = system().lower()
debugger_address = option.debugger_address
chrome_path = option.chrome_path
chrome_path = option.browser_path
debugger_address = debugger_address[7:] if debugger_address.startswith('http://') else debugger_address
ip, port = debugger_address.split(':')

View File

@ -53,7 +53,7 @@ def make_absolute_link(link, page: BasePage = None) -> str: ...
def is_js_func(func: str) -> bool: ...
def connect_chrome(option: DriverOptions) -> tuple: ...
def connect_browser(option: DriverOptions) -> tuple: ...
def location_in_viewport(page, loc_x: int, loc_y: int) -> bool: ...

View File

@ -488,9 +488,6 @@ class DriverOptions(Options):
self.timeouts['pageLoad'] *= 1000
self.timeouts['script'] *= 1000
# if '--no-sandbox' not in self._arguments:
# self._arguments.append('--no-sandbox')
@property
def driver_path(self):
"""chromedriver文件路径"""
@ -498,6 +495,11 @@ class DriverOptions(Options):
@property
def chrome_path(self):
"""浏览器启动文件路径"""
return self.browser_path
@property
def browser_path(self):
"""浏览器启动文件路径"""
return self.binary_location or 'chrome'
@ -718,11 +720,12 @@ class DriverOptions(Options):
self.page_load_strategy = value.lower()
return self
def set_paths(self, driver_path=None, chrome_path=None, local_port=None, debugger_address=None, download_path=None,
user_data_path=None, cache_path=None):
def set_paths(self, driver_path=None, chrome_path=None, browser_path=None, local_port=None,
debugger_address=None, download_path=None, user_data_path=None, cache_path=None):
"""快捷的路径设置函数 \n
:param driver_path: chromedriver.exe路径
:param chrome_path: chrome.exe路径
:param browser_path: 浏览器可执行文件路径
:param local_port: 本地端口号
:param debugger_address: 调试浏览器地址127.0.0.1:9222
:param download_path: 下载文件路径
@ -736,6 +739,9 @@ class DriverOptions(Options):
if chrome_path is not None:
self.binary_location = str(chrome_path)
if browser_path is not None:
self.binary_location = str(browser_path)
if local_port is not None:
self.debugger_address = '' if local_port == '' else f'127.0.0.1:{local_port}'

View File

@ -5,6 +5,7 @@
"""
from configparser import RawConfigParser
from http.cookiejar import Cookie
from pathlib import Path
from typing import Any, Union, List
from requests.cookies import RequestsCookieJar
@ -158,6 +159,9 @@ class DriverOptions(Options):
@property
def chrome_path(self) -> str: ...
@property
def browser_path(self) -> str: ...
@property
def user_data_path(self) -> str: ...
@ -203,8 +207,9 @@ class DriverOptions(Options):
def set_page_load_strategy(self, value: str) -> 'DriverOptions': ...
def set_paths(self,
driver_path: str = None,
chrome_path: str = None,
driver_path: Union[str, Path] = None,
chrome_path: Union[str, Path] = None,
browser_path: Union[str, Path] = None,
local_port: Union[int, str] = None,
debugger_address: str = None,
download_path: str = None,

View File

@ -1,10 +1,10 @@
[paths]
chromedriver_path = D:\coding\projects\DrissionPage\DrissionPage\chromedriver.exe
chromedriver_path =
tmp_path =
[chrome_options]
debugger_address = 127.0.0.1:9222
binary_location = C:\Program Files\Google\Chrome\Application\chrome.exe
binary_location = chrome
arguments = ['--no-first-run', '--no-sandbox', '--disable-gpu', '--ignore-certificate-errors', '--disable-infobars', '--disable-popup-blocking']
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']}

View File

@ -14,7 +14,7 @@ from selenium.webdriver.chrome.options import Options
from selenium.webdriver.remote.webdriver import WebDriver as RemoteWebDriver
from tldextract import extract
from .common import get_pid_from_port, connect_chrome
from .common import get_pid_from_port, connect_browser
from .config import SessionOptions, DriverOptions, cookies_to_tuple, session_options_to_dict
@ -103,7 +103,7 @@ class Drission(object):
# -----------若指定debug端口且该端口未在使用中则先启动浏览器进程-----------
if self.driver_options.debugger_address:
# 启动浏览器进程,同时返回该进程使用的 chrome.exe 路径
chrome_path, self._debugger = connect_chrome(self.driver_options)
chrome_path, self._debugger = connect_browser(self.driver_options)
# -----------创建WebDriver对象-----------
self._driver = create_driver(chrome_path, driver_path, self.driver_options)

View File

@ -30,6 +30,7 @@ def show_settings(ini_path=None):
def set_paths(driver_path=None,
chrome_path=None,
browser_path=None,
local_port=None,
debugger_address=None,
tmp_path=None,
@ -41,6 +42,7 @@ def set_paths(driver_path=None,
"""快捷的路径设置函数 \n
:param driver_path: chromedriver.exe路径
:param chrome_path: chrome.exe路径
:param browser_path: 浏览器可执行文件路径
:param local_port: 本地端口号
:param debugger_address: 调试浏览器地址127.0.0.1:9222
:param download_path: 下载文件路径
@ -62,6 +64,9 @@ def set_paths(driver_path=None,
if chrome_path is not None:
om.set_item('chrome_options', 'binary_location', format_path(chrome_path))
if browser_path is not None:
om.set_item('chrome_options', 'binary_location', format_path(browser_path))
if local_port is not None:
om.set_item('chrome_options', 'debugger_address', format_path(f'127.0.0.1:{local_port}'))

View File

@ -11,6 +11,7 @@ def show_settings(ini_path: str = None) -> None: ...
def set_paths(driver_path: str = None,
chrome_path: str = None,
browser_path: str = None,
local_port: Union[int, str] = None,
debugger_address: str = None,
tmp_path: str = None,

View File

@ -12,13 +12,13 @@
* [🧭 3 入门指南](#)
* [🌏 3.1 基本概念](入门指南\基本概念.md)
* [🌏 3.2 安装和导入](入门指南\安装和导入.md)
* [🌏 3.3 准备工作](入门指南\准备工作.md)
* [🌏 3.4 上手示例](#)
* [🌏 3.1 安装和导入](入门指南\安装和导入.md)
* [🌏 3.2 准备工作](入门指南\准备工作.md)
* [🌏 3.3 上手示例](#)
* [🌐 控制浏览器](入门指南\上手示例\控制浏览器.md)
* [🌐 收发数据包](入门指南\上手示例\收发数据包.md)
* [🌐 模式切换](入门指南\上手示例\模式切换.md)
* [🌏 3.4 基本概念](入门指南\基本概念.md)
* [🛠 4 使用方法](#)

View File

@ -1,6 +1,6 @@
本节讲解 DrissionPage 的一些基本概念。了解它大概的构成。
如果您觉得有点懵,可直接跳过本节,从下一节直接上手代码
如果您觉得有点懵,可直接跳过本节。
# ✔️ 网页自动化

View File

@ -1,3 +1,17 @@
# ✔️运行环境
## 📍 操作系统
Windows 或 Linux。
作者没有 Mac没测试过估计是可以的。
## 📍 python 版本
支持 python 3.6 及以上版本。
# ✔️ 安装
请使用 pip 安装 DrissionPage

View File

@ -22,7 +22,7 @@ tmp_path =
debugger_address = 127.0.0.1:9222
; 浏览器可执行文件路径
binary_location =
binary_location = chrome
; 配置信息
arguments = [