Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.36.3"
__version__ = "4.36.4"
12 changes: 8 additions & 4 deletions seleniumbase/undetected/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,10 @@ def reconnect(self, timeout=0.1):
"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()
Expand Down Expand Up @@ -499,8 +501,10 @@ def connect(self):
"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()
Expand Down