vd4
vd4

Reputation: 55

Firebug not displayed while launching Firefox through selenium webdriver on eclipse Mars IDE.

Firebug not displayed while launching Firefox through selenium webdriver on eclipse Mars IDE. While same is visible on launching Firefox manually without IDE. Tried installing older version of Firefox still doesn't work. Please suggest on this.

Upvotes: 0

Views: 116

Answers (1)

Madhan
Madhan

Reputation: 5818

It wont work like that.

Selenium creates a fresh profile every time so you will not get any cookies, form data and any plugin or add-on, which you have installed on your local browser.

You can achieve what you want by using FirefoxProfile

  • Load the Default Firefox Profile. This will load your default Firefox Profile along will all the data,extensions, history etc

  • Or. If you just want to add The Firebug Extension. Then use the addExtension method of Firefox Profile

Upvotes: 1

Related Questions