Any ideas? I've tried setting webdriver.firefox.useExisting=true as described in the link below hoping to reuse an existing window with firebug enabled, but no such luck.

http://code.google.com/p/selenium/wiki/FirefoxDriver

link|improve this question
Good question I was just wondering how you did that myself. – Alastair Montgomery May 20 '11 at 7:21
feedback

2 Answers

up vote 6 down vote accepted

you have to create a specific profile where Firebug is always enabled, then launch firefox with this profile in your configuration

link|improve this answer
2  
ff=Watir::Browser.new(:firefox, :profile=>some_profile) – marc May 19 '11 at 22:01
feedback

The quick answer is:

browser = Watir::Browser.new(:firefox, :profile => "default")

But if you are running tests you probably shouldn't use the default profile.

link|improve this answer
3  
The longer answer is on the wiki page for the WebDriver Ruby bindings: code.google.com/p/selenium/wiki/… – jarib May 21 '11 at 13:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.