的Firefox版本如何更改Firefox的配置偏好字段JAVA像「security.insecure_field_warning.contextual.enabled」
53.0(32位)
硒3.4.0
ProfilesIni profile = new ProfilesIni();
FirefoxProfile firefoxProfile = profile.getProfile("Selenium");
firefoxProfile.setPreference("security.insecure_field_warning.contextual.enabled", false);
的問題是第三行什麼都不做。 如果我在about:config
中將security.insecure_field_warning.contextual.enabled
設置爲false
,則此更改不會保存在配置文件中。
如何將其設置爲false
從code
在java
?
我看到類似的話題,但它在Python
。
顯然security.insecure_field_warning.contextual.enabled
從about:config
在Firefox
您可以考慮通過簡單的方式將'security.insecure_field_warning.contextual.enabled'設置爲'false'來更新我們正在嘗試做什麼?謝謝 – DebanjanB
@DebanjanB這是一個來自Firefox的設置,目前約在:config ,我想禁用它 – yami
我的問題是具體的,你爲什麼要'禁用'它?什麼是禁用它的實現?我如何測試我的代碼是否真的禁用?謝謝 – DebanjanB