File tree 4 files changed +7
-4
lines changed
4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
pip >= 23.3.2
2
2
packaging >= 23.2
3
3
setuptools >= 68.0.0 ;python_version < "3.8"
4
- setuptools >= 69.0.2 ;python_version >= "3.8"
4
+ setuptools >= 69.0.3 ;python_version >= "3.8"
5
5
wheel >= 0.42.0
6
6
attrs >= 23.1.0
7
7
certifi >= 2023.11.17
Original file line number Diff line number Diff line change 1
1
# seleniumbase package
2
- __version__ = "4.22.2 "
2
+ __version__ = "4.22.3 "
Original file line number Diff line number Diff line change @@ -1270,7 +1270,10 @@ def _set_firefox_options(
1270
1270
f_pref = firefox_pref_item .split (":" )[0 ]
1271
1271
f_pref_value = firefox_pref_item .split (":" )[1 ]
1272
1272
needs_conversion = True
1273
- else : # More than one ":" in the set. (Too many!)
1273
+ elif firefox_pref_item .count ("://" ) == 1 :
1274
+ f_pref = firefox_pref_item .split (":" )[0 ]
1275
+ f_pref_value = ":" .join (firefox_pref_item .split (":" )[1 :])
1276
+ else : # More than one ":" in the set without a URL.
1274
1277
raise Exception (
1275
1278
'Incorrect formatting for Firefox "pref:value" set!'
1276
1279
)
Original file line number Diff line number Diff line change 134
134
'pip>=23.3.2' ,
135
135
'packaging>=23.2' ,
136
136
'setuptools>=68.0.0;python_version<"3.8"' ,
137
- 'setuptools>=69.0.2 ;python_version>="3.8"' ,
137
+ 'setuptools>=69.0.3 ;python_version>="3.8"' ,
138
138
'wheel>=0.42.0' ,
139
139
'attrs>=23.1.0' ,
140
140
"certifi>=2023.11.17" ,
You can’t perform that action at this time.
0 commit comments