selenium-webdriver启动时开启firebug
Posted 开发+测试
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium-webdriver启动时开启firebug相关的知识,希望对你有一定的参考价值。
File file = new File("D:/software/firefox/firebug-2.0.16-fx.xpi");
FirefoxProfile profile = new FirefoxProfile();
profile.addExtension(file);
profile.setPreference("extensions.firebug.currentVersion", "2.0.16");//设置firebug版本
profile.setPreference("extensions.firebug.allPagesActivation","on");//设置firebug自动开启
driver = new FirefoxDriver(profile);
driver.get("http://192.168.2.128:8080/selenium/index.jsp");
driver.quit();
以上是关于selenium-webdriver启动时开启firebug的主要内容,如果未能解决你的问题,请参考以下文章
Selenium-Webdriver (Java) 无法始终执行“悬停和单击”功能
Selenium-WebDriver自学Selenium-IDE模式匹配