Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

firefox-profile

saadtazi492kMIT4.7.0TypeScript support: included

firefox profile for selenium WebDriverJs, admc/wd or any other node selenium driver that supports capabilities

selenium, webdriver, firefox, firefox profile, nodejs

readme

firefox-profile-js

Build Status Coverage Status Dependency Status Selenium Test Status

NPM

Create or update Firefox Profile programmatically.

Notes for Selenium-webdriver package users

If you are using selenium-webdriver package, you no longer need to use this package: selenium-webdriver package now implements a class that allows to create firefox profiles. Check this link for an example on how to set your own profile with selenium-webdriver. But you can still use this package with selenium-webdriver: here is an example. The important part in the example is to set the encoded profile on .moz:firefoxOptions.profile instead of on .firefox_profile.

This package is also useful if you use another webdriver library like wd.js or any other webdriver json wire protocol implementation (webdriver.io?).

Introduction

This package allows you to:

  • create a firefox profile
  • use an existing profile (by specifying a path)
  • use an existing user profile (by specifying a name)
  • add extensions to your profile,
  • specify proxy settings,
  • set the user preferences...

More info on user preferences here.

It also contains a command line interface that allows to copy or create profiles.

Installation

"real" npm support is on its way... soon... maybe... Open an issue if you need it... Use npm:

npm install firefox-profile

or yarn:

yarn add firefox-profile

Usage

Make sure you have selenium server running... or use 'selenium-webdriver/remote' class.

Steps

  • create a profile
  • modify the profile:
    • setPreference(key, value)
    • addExtension(path/To/Extenstion.xpi) or addExtension(path/To/Unpacked/Extension/)
  • create firefox capabilities and set the 'firefox_profile' capability
  • attach the capabilitites to your webdriver

I wanna see it!

/******************************************************************
     * with old version selenium webdriverJs
     * WARNING: does not work with recent version of selenium-webdriver node bindings, which expect an instance of selenium-webdriver Firefox Profile page (`require('selenium-webdriver/firefox').Profile` or similar)
     * @see: https://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/firefox/profile_exports_Profile.html
     * installs firebug 
     * and make http://saadtazi.com the url that is opened on new tabs
    /******************************************************************/
var webdriver = require("selenium-webdriver");

// create profile
var FirefoxProfile = require("firefox-profile");
var myProfile = new FirefoxProfile();

// you can add an extension by specifying the path to the xpi file
// or to the unzipped extension directory
myProfile.addExtension("test/extensions/firebug-1.12.4-fx.xpi", function () {
  var capabilities = webdriver.Capabilities.firefox();

  // you can set firefox preferences BEFORE calling encoded()
  myProfile.setPreference("browser.newtab.url", "http://saadtazi.com");

  // attach your newly created profile

  myProfile.encoded(function (err, encodedProfile) {
    capabilities.set("firefox_profile", encodedProfile);

    // start the browser
    var wd = new webdriver.Builder().withCapabilities(capabilities).build();

    // woot!
    wd.get("http://en.wikipedia.org");
  });
});

/**************************************************
    /* with admc/wd
    /* installs firebug, and make it active by default
    /**************************************************/

var FirefoxProfile = require("firefox-profile"),
  wd = require("wd");

// set some userPrefs if needed
// Note: make sure you call encoded() after setting some userPrefs
var fp = new FirefoxProfile();
// activate and open firebug by default for all sites
fp.setPreference("extensions.firebug.allPagesActivation", "on");
// activate the console panel
fp.setPreference("extensions.firebug.console.enableSites", true);
// show the console panel
fp.setPreference("extensions.firebug.defaultPanelName", "console");
// done with prefs?
fp.updatePreferences();

// you can install multiple extensions at the same time
fp.addExtensions(["./test/extensions/firebug-1.12.4-fx.xpi"], function () {
  fp.encoded(function (err, zippedProfile) {
    if (err) {
      console.error("oops, an error occured:", err);
      return;
    }
    browser = wd.promiseChainRemote();
    // firefox 46-
    //browser.init({
    //  browserName:'firefox',
    //  // set firefox_profile capabilities HERE!!!!
    //  firefox_profile: zippedProfile
    //}).
    // firefox 47+
    browser.init({
      browserName: "firefox",
      marionette: true,
      "moz:firefoxOptions": {
        profile: zippedProfile,
      },
    });
    // woOot!!
    get("http://en.wikipedia.org");
  });
});

You can also copy an existing profile... Check the doc FirefoxProfile.copy(...).

Command Line Interface

It allows to copy (from profile name or profile directory) or create firefox profiles with installed extensions. Note that it does not allow to load user preferences... yet.

Run node_modules/bin/firefox-profile -h to get the help message:

usage: firefox-profile [-v] [-p profilename || -c profile_dir] [-e extension_path1 [-e extension_path2]] [-o destination_dir || --ouput destination_dir || -b [file_path] || --base64 [file_path]]

-v: verbose mode (same as --verbose)
-h: show this message (same as --help)
-p profilename: profile to copy (same as --profile)
-c profile_dir: profile folder path to copy (same as --copy)
-e extension_path: file path to extension to add to the profile. Can be present multiple times (same as --extension)
-o destination_dir (or --output destination_dir): folder where the profile will be created.
-b [file_path](or --base64): write the encoded firefox profile to stdout or to file_path if specified.

API Documentation

The API documentation can be found in doc/.

It can be regenerated using grunt docs. Requires apidox - listed in devDependencies.

Tests

mocha
# or
grunt mochacov:unit

Coverage

grunt mochacov:coverage

Generates doc/coverage.html

TODO

  • add documentation and comments
  • write tests
  • fix bugs
  • write more tests
  • fix more bugs
  • clean tmp directory on process 'exit' and 'SIGINT'

Disclaimer

This class is actually a port of the python class.

Found a bug?

Open a github issue.

changelog

4.7.0

dump dependencies, add GHA. Thank you @frigante.

4.6.0

  • Linux: add support for snap, flatpak and XDG_CONFIG_HOME firefox directory

4.5.0

  • bug fix: pass profileDirectory when copying profile (PR)

4.4.0

4.3.2

  • bump xml2js

4.2.2

  • another fix for cleanOnExit

4.2.1

  • better cleanOnExit, thanks to @Gusted

4.2.0

  • Drop a lot of dependencies, thanks to @fregante

4.1.0

  • remove jetpack dependency (thanks to @rpl)
  • update deps, thanks to @fregante

4.0.0

  • archiver Major update (security fix)

3.0.0

Drop support for node 6 and 8. Now tested against 10, 12 and 14.

2.0.0

  • WebExtensions with package.json should not be classified as JetPack addon, thanks to @photonios

1.3.1

  • fix regExp for parsing user_pref, thanks to @hbenl

1.3.0

  • update deps

1.2.0

  • update deps
  • drop support for node 4 (travis tests)

1.1.0

  • update deps (big jump)
  • test with nodejs 8

1.0.3

  • more TS typing fixes

1.0.2

  • fix TS typings and example in README

1.0.1

  • Update async from 2.3.0 to 2.4.1 (thanks @EsrefDurna)

1.0.0

  • BREAKING CHANGE: handle errors in encoded(cb) callback function

0.5.0

  • Make sure to load user settings if existing profile (thanks @lutostag)
  • Drop support for node 0.12

0.4.9

  • better tmp folder cleanup (thanks @Foxhind)

0.4.8

  • fix archiver.bulk() deprecation warning (thanks @zdglagola)

0.4.7

  • remove os.tmpDir deprecation warning (thanks @pdehaan)

0.4.6

  • (better) fix ctl-c exit

0.4.5 - DO NOT USE - BROKEN

  • fix ctl-c exit

0.4.4

  • package update: node-uuid --> uuid

0.4.3

  • add webexension support (thanks @hbenl)
  • add Typescript (thanks @hbenl)
  • updated dependencies versions

0.4.2

  • add encode method to make it compatible with selenium-webdriver

0.4.1

  • fix CLI empty profile creation

0.4.0

  • remove wrench dependency (no longer maintained), replaced by fs-extra
  • updated package versions

0.3.13

  • updated package versions

0.3.12

  • bugfix with unziped extensions
  • CI now against node 0.12 and 4.4
  • updated package versions

0.3.11

  • added a cli to create or copy profile

0.3.10

  • added .npmignore

0.3.9

  • updated package versions

0.3.8

  • user preferences parsing fix (thanks @cadorn)
  • updated package versions

0.3.7

  • updated package versions

0.3.6

  • updated package versions

0.3.5

  • updated package versions

0.3.4

  • updated package versions
  • fixes SIGINT and exit process (thanks @XrXr)

0.3.3

  • minor fixes, added tests for ProfileFinder

0.3.2

  • modify some callbacks to follow the standard (err, resp)

0.3.1

  • ability to specify a destination directory

0.2.13

  • normalize extension path (thanks @halo2376)

0.2.12

  • catching profileDir delete errors on exit

0.2.10

  • made most of the fs calls asynchronous

0.2.9

  • support for jetpack extensions (jpm now in beta) (thanks @jsantell)

0.2.8

  • updated package versions.
  • dropping support for nodejs 0.8.

0.2.7

  • updated package versions + fixed coverage report

0.2.6

  • deps version update

0.2.5

  • fixed packed extension (thanks @jsantell)
  • allowed support for the new jetpack extensions that use package.json instead of install.rdf (thanks @jsantell)

0.2.4

  • updatePreferences() call is no longer required, it is automatically called by encoded() if needed

0.2.3

  • update package versions (archiver)

0.2.2

  • fixed other Windows path issues (contribution from testingBot)

0.2.1

  • setAcceptUntrustedCerts and setAssumeUntrustedCertIssuer now expects real boolean (contribution from testingBot)

0.2.0

  • Fixed Windows support

0.1.1

0.1.0

  • more unit tests, added integration tests, saucelabs

0.0.4

  • added addExtensions(array, callback) method
  • EMFILE bug fix
  • added basic tests for encoded()

0.0.3

  • encoded is now asynchronous (adm-zip to node-archiver constraints to zip profile)