Merge pull request #3635 from seleniumbase/cdp-mode-patch-44
CDP Mode: Patch 44
This commit is contained in:
commit
13c63fcca8
|
@ -1,2 +1,2 @@
|
|||
# seleniumbase package
|
||||
__version__ = "4.36.3"
|
||||
__version__ = "4.36.4"
|
||||
|
|
|
@ -460,8 +460,10 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|||
"chrome-extension://"
|
||||
):
|
||||
# https://issues.chromium.org/issues/396611138
|
||||
# (Uncomment below when resolved)
|
||||
# self.close()
|
||||
# (Remove the Linux conditional when resolved)
|
||||
# (So that close() is always called)
|
||||
if "linux" in sys.platform:
|
||||
self.close()
|
||||
if self.service.is_connectable():
|
||||
self.stop_client()
|
||||
self.service.stop()
|
||||
|
@ -499,8 +501,10 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|||
"chrome-extension://"
|
||||
):
|
||||
# https://issues.chromium.org/issues/396611138
|
||||
# (Uncomment below when resolved)
|
||||
# self.close()
|
||||
# (Remove the Linux conditional when resolved)
|
||||
# (So that close() is always called)
|
||||
if "linux" in sys.platform:
|
||||
self.close()
|
||||
if self.service.is_connectable():
|
||||
self.stop_client()
|
||||
self.service.stop()
|
||||
|
|
Loading…
Reference in New Issue