当前位置:  开发笔记 > 编程语言 > 正文

使用Selenium时如何绕过firefox更新页面?

如何解决《使用Selenium时如何绕过firefox更新页面?》经验,为你挑选了0个好方法。

我在Firefox浏览器上运行了一些selenium测试.不幸的是,虽然我注意创建一个新的配置文件,但是/firstrun/当我的测试开始时,我总是会显示Firefox 的页面,这很烦人,因为该页面通过Web获取内容.

我试过以下方式禁用它

    FirefoxProfile profile = new FirefoxProfile(profileDir);
    if(!exists) {
        profile.setPreference("signed.applets.codebase_principal_support", true);
        profile.setPreference("capability.principal.codebase.p0.granted", true);
        profile.setPreference("startup.homepage_override_url", "about:blank");
        profile.setPreference("browser.startup.homepage_override.mstone", "'ignore'");

但它仍然显示出来.

我该怎么做才能确保Firefox没有显示页面?

推荐阅读
依然-狠幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有