linux unlink bug fix + version bump

This commit is contained in:
UltrafunkAmsterdam 2023-02-05 15:36:31 +01:00
parent 92192e8c5e
commit 8baa77352f
1 changed files with 6 additions and 6 deletions

View File

@ -17,7 +17,7 @@ by UltrafunkAmsterdam (https://github.com/ultrafunkamsterdam)
from __future__ import annotations from __future__ import annotations
__version__ = "3.4.1" __version__ = "3.4.2"
import json import json
import logging import logging
@ -238,13 +238,13 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
finalize(self, self._ensure_close, self) finalize(self, self._ensure_close, self)
self.debug = debug self.debug = debug
patcher = Patcher( self.patcher = Patcher(
executable_path=driver_executable_path, executable_path=driver_executable_path,
force=patcher_force_close, force=patcher_force_close,
version_main=version_main, version_main=version_main,
) )
patcher.auto() self.patcher.auto()
self.patcher = patcher # self.patcher = patcher
if not options: if not options:
options = ChromeOptions() options = ChromeOptions()
@ -419,7 +419,7 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
if service_creationflags: if service_creationflags:
service = selenium.webdriver.common.service.Service( service = selenium.webdriver.common.service.Service(
patcher.executable_path, port, service_args, service_log_path self.patcher.executable_path, port, service_args, service_log_path
) )
for attr_name in ("creationflags", "creation_flags"): for attr_name in ("creationflags", "creation_flags"):
if hasattr(service, attr_name): if hasattr(service, attr_name):
@ -429,7 +429,7 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
service = None service = None
super(Chrome, self).__init__( super(Chrome, self).__init__(
executable_path=patcher.executable_path, executable_path=self.patcher.executable_path,
port=port, port=port,
options=options, options=options,
service_args=service_args, service_args=service_args,