Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was trying to run a selenium script that clicks on one of my firefox plugins in my toolbar. Is it possible to do this?

share|improve this question
Ok, well i figured that this is not possible. A better question might be is there another tool that can automate this? – Bryan K Nov 10 '11 at 15:19
This thread might help - stackoverflow.com/questions/5975184/… – Tarun Nov 13 '11 at 13:07

1 Answer

Actually you can't click on the element since it's not a web page element. However you can create a profile for firefox and include addons in that profile that is launched by the webdriver applications. This will allow you to have access to Firebug or other addons. I'm not sure of the interaction between the addons myself since I don't use this but the way you set a profile and extend the profile with the addon api is like so:

File file = new File("firebug-1.8.1.xpi");
FirefoxProfile firefoxProfile = new FirefoxProfile();
firefoxProfile.addExtension(file);
firefoxProfile.setPreference("extensions.firebug.currentVersion", "1.8.1"); // Avoid startup screen
WebDriver driver = new FirefoxDriver(firefoxProfile);

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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