@@ -140,6 +140,17 @@ def _create_firefox_profile(
140
140
profile .set_preference ("pdfjs.disabled" , True )
141
141
profile .set_preference ("app.update.auto" , False )
142
142
profile .set_preference ("app.update.enabled" , False )
143
+ profile .set_preference ("extensions.update.enabled" , False )
144
+ profile .set_preference ("devtools.errorconsole.enabled" , True )
145
+ profile .set_preference (
146
+ "datareporting.healthreport.logging.consoleEnabled" , False )
147
+ profile .set_preference ("datareporting.healthreport.service.enabled" , False )
148
+ profile .set_preference (
149
+ "datareporting.healthreport.service.firstRun" , False )
150
+ profile .set_preference ("datareporting.healthreport.uploadEnabled" , False )
151
+ profile .set_preference ("datareporting.policy.dataSubmissionEnabled" , False )
152
+ profile .set_preference (
153
+ "datareporting.policy.dataSubmissionPolicyAccepted" , False )
143
154
if proxy_string :
144
155
proxy_server = proxy_string .split (':' )[0 ]
145
156
proxy_port = proxy_string .split (':' )[1 ]
@@ -156,6 +167,8 @@ def _create_firefox_profile(
156
167
profile .set_preference ("security.csp.enable" , False )
157
168
profile .set_preference (
158
169
"browser.download.manager.showAlertOnComplete" , False )
170
+ profile .set_preference ("browser.shell.checkDefaultBrowser" , False )
171
+ profile .set_preference ("browser.startup.page" , 0 )
159
172
profile .set_preference ("browser.privatebrowsing.autostart" , True )
160
173
profile .set_preference ("browser.download.panel.shown" , False )
161
174
profile .set_preference (
0 commit comments