File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
# seleniumbase package
2
- __version__ = "4.36.3 "
2
+ __version__ = "4.36.4 "
Original file line number Diff line number Diff line change @@ -460,8 +460,10 @@ def reconnect(self, timeout=0.1):
460
460
"chrome-extension://"
461
461
):
462
462
# https://issues.chromium.org/issues/396611138
463
- # (Uncomment below when resolved)
464
- # self.close()
463
+ # (Remove the Linux conditional when resolved)
464
+ # (So that close() is always called)
465
+ if "linux" in sys .platform :
466
+ self .close ()
465
467
if self .service .is_connectable ():
466
468
self .stop_client ()
467
469
self .service .stop ()
@@ -499,8 +501,10 @@ def connect(self):
499
501
"chrome-extension://"
500
502
):
501
503
# https://issues.chromium.org/issues/396611138
502
- # (Uncomment below when resolved)
503
- # self.close()
504
+ # (Remove the Linux conditional when resolved)
505
+ # (So that close() is always called)
506
+ if "linux" in sys .platform :
507
+ self .close ()
504
508
if self .service .is_connectable ():
505
509
self .stop_client ()
506
510
self .service .stop ()
You can’t perform that action at this time.
0 commit comments