console.log() doesn’t work anymore in Firebug since Firefox 51.0.1

As I mentioned in another answer, this happens because the Firefox internal APIs, which Firebug uses to output the data, have changed. When you open the Browser Console, you’ll see the following error: TypeError: ConsoleAPIListener is not a constructor console.js:149:38 Note that, as stated in a thread in the Firebug discussion group and on the … Read more

How to force Firefox to open devtools on each tab?

Dmitry Kulikov has developed a plugin for Firefox that does exactly this. You can find it here: https://github.com/dmitry-kulikov/firefox-devtools-auto-open and can be installed from the firefox add-on store here: https://addons.mozilla.org/en-us/firefox/addon/devtools-auto-open From my experience it does not bind to the new tab from the start. As such you might miss some network entries. I expect this is … Read more

Firefox webdriver opens first run page all the time

To turn off this annoying start page: in C# with Selenium 2.48 I found the following solution: FirefoxProfile prof = new FirefoxProfile(); prof.SetPreference(“browser.startup.homepage_override.mstone”, “ignore”); prof.SetPreference(“startup.homepage_welcome_url.additional”, “about:blank”); Driver = new FirefoxDriver(prof); …and it will never bother you again. Note: One of these settings alone will also work. I use them together to make it bullet-proof.

How does FireFox work? Source code walk through?

Seneca College in Toronto has a program geared towards exactly this — beginners to Mozilla development. Check out some of these links: Real World Mozilla Fall 2008 Weekly Schedule Some labs if you want to dive right in: Lab: Learning Collaborative Development (Fall 2008) Lab: Building Open Source Projects (Fall 2008) Lab: Real World Mozilla … Read more

How to enable CORS on Firefox

Do nothing to the browser. CORS is supported by default on all modern browsers (and since Firefox 3.5). The server being accessed by JavaScript has to give the site hosting the HTML document in which the JS is running permission via CORS HTTP response headers. security.fileuri.strict_origin_policy is used to give JS in local HTML documents … Read more

Webdriver and proxy server for firefox

Value for network.proxy.http_port should be integer (no quotes should be used) and network.proxy.type should be set as 1 (ProxyType.MANUAL, Manual proxy settings) FirefoxProfile profile = new FirefoxProfile(); profile.setPreference(“network.proxy.type”, 1); profile.setPreference(“network.proxy.http”, “localhost”); profile.setPreference(“network.proxy.http_port”, 3128); WebDriver driver = new FirefoxDriver(profile);

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)