When We Run Selenium WebDriver , the WebDriver Window does not have Firebug in it.
To Launch Firebug in WebDriver window we can use the following Snippet.
To Launch Firebug in WebDriver window we can use the following Snippet.
FirefoxProfile profile = new FirefoxProfile();
profile.addExtension(new File("C:\\Users\\neeraj\\ Downloads\\firebug-1.8.4.xpi") );
WebDriver driver=new FirefoxDriver(profile);
No comments:
Post a Comment