File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11pip >= 23.3.2
22packaging >= 23.2
33setuptools >= 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"
55wheel >= 0.42.0
66attrs >= 23.1.0
77certifi >= 2023.11.17
Original file line number Diff line number Diff line change 11# 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(
12701270 f_pref = firefox_pref_item .split (":" )[0 ]
12711271 f_pref_value = firefox_pref_item .split (":" )[1 ]
12721272 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.
12741277 raise Exception (
12751278 'Incorrect formatting for Firefox "pref:value" set!'
12761279 )
Original file line number Diff line number Diff line change 134134 'pip>=23.3.2' ,
135135 'packaging>=23.2' ,
136136 '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"' ,
138138 'wheel>=0.42.0' ,
139139 'attrs>=23.1.0' ,
140140 "certifi>=2023.11.17" ,
You can’t perform that action at this time.
0 commit comments