File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# seleniumbase package
2
- __version__ = "4.34.5 "
2
+ __version__ = "4.34.6 "
Original file line number Diff line number Diff line change @@ -2146,7 +2146,9 @@ def _set_chrome_options(
2146
2146
chrome_options .add_extension (abs_path )
2147
2147
if extension_dir :
2148
2148
# load-extension input can be a comma-separated list
2149
- abs_path = os .path .abspath (extension_dir )
2149
+ abs_path = (
2150
+ "," .join (os .path .abspath (p ) for p in extension_dir .split ("," ))
2151
+ )
2150
2152
chrome_options = add_chrome_ext_dir (chrome_options , abs_path )
2151
2153
if (
2152
2154
page_load_strategy
@@ -4114,7 +4116,9 @@ def get_local_driver(
4114
4116
edge_options .add_extension (abs_path )
4115
4117
if extension_dir :
4116
4118
# load-extension input can be a comma-separated list
4117
- abs_path = os .path .abspath (extension_dir )
4119
+ abs_path = (
4120
+ "," .join (os .path .abspath (p ) for p in extension_dir .split ("," ))
4121
+ )
4118
4122
edge_options = add_chrome_ext_dir (edge_options , abs_path )
4119
4123
edge_options .add_argument ("--disable-infobars" )
4120
4124
edge_options .add_argument ("--disable-notifications" )
You can’t perform that action at this time.
0 commit comments