Selenium WebDriver启动Firefox时自动打开Firebug的两种方法

方法1:打开Firefox后,发送F12快捷键激活Firebug.

            File file=new File("C:\\webdriver\\firebug-2.0.4-fx.xpi");//设置Firebug路径
            FirefoxProfile profile = new FirefoxProfile();
profile.setPreference(
"network.proxy.type", 2); profile.setPreference("network.proxy.autoconfig_url", "http://proxy.successfactors.com:8083"); //自动代理配置 try { //add firebug profile.addExtension(file); profile.setPreference("extensions.firebug.currentVersion", "2.0.4");//设置firebug 版本 } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } WebDriver driver = new FirefoxDriver(profile); driver.get("http://www.dbyl.cn"); Actions actions=new Actions(driver); //F12 is a short cut of active firebug //do not forget perform actions.sendKeys(Keys.F12).perform(); driver.manage().window().maximize(); driver.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS); driver.manage().timeouts().pageLoadTimeout(30, TimeUnit.SECONDS);

2.直接使用Firefox的setPreference 设置extensions.firebug.allPagesActivation设置为ON,firebug会被active

       File file=new File("C:\\webdriver\\firebug-2.0.4-fx.xpi");//设置Firebug路径
            FirefoxProfile profile = new FirefoxProfile();
            profile.setPreference("network.proxy.type", 2);
            profile.setPreference("network.proxy.autoconfig_url", "http://proxy.successfactors.com:8083"); //自动代理配置
          
            try {
                //add firebug
                profile.addExtension(file);
                profile.setPreference("extensions.firebug.currentVersion", "2.0.4");//设置firebug 版本
                //active firebug extensions
                profile.setPreference("extensions.firebug.allPagesActivation", "on");
                 
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            WebDriver driver = new FirefoxDriver(profile);
           
            driver.get("http://www.dbyl.cn");
            Actions actions=new Actions(driver);
           
            driver.manage().window().maximize();
            driver.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS);
            driver.manage().timeouts().pageLoadTimeout(30, TimeUnit.SECONDS);
posted @ 2015-01-29 12:41  princessd8251  阅读(411)  评论(0)    收藏  举报