Skip to content

Commit

Permalink
Upgraded Firebug... even if autostart doesn't work as expected anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
mguillem committed Mar 17, 2015
1 parent 771b513 commit 9e0a68c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
Expand All @@ -19,6 +20,7 @@
* @author Marc Guillemot
* @version $Revision: $
*/
@Ignore // don't know why but Firebug doesn't automatically open. Need to investigate
public class FirebugConsoleTest {
private static WebDriver webDriver;

Expand All @@ -27,7 +29,7 @@ public class FirebugConsoleTest {
public static void setup() throws Exception {
FirefoxProfile ffProfile = new FirefoxProfile();
ffProfile.addExtension(new File("firefox")); // assuming that the test is started in project's root
ffProfile.addExtension(FirebugConsoleTest.class, "/firebug-1.11.4-fx.xpi");
ffProfile.addExtension(FirebugConsoleTest.class, "/firebug-2.0.8-fx.xpi");

ffProfile.setPreference("extensions.firebug.showStackTrace", "true");
ffProfile.setPreference("extensions.firebug.delayLoad", "false");
Expand Down
Binary file removed src/test/resources/firebug-1.11.4-fx.xpi
Binary file not shown.
Binary file added src/test/resources/firebug-2.0.8-fx.xpi
Binary file not shown.

0 comments on commit 9e0a68c

Please sign in to comment.