Table of Contents

Class FirefoxProfileManager

Namespace
OpenQA.Selenium.Firefox
Assembly
WebDriver.dll

Allows the user to enumerate and access existing named Firefox profiles.

public class FirefoxProfileManager
Inheritance
FirefoxProfileManager
Inherited Members

Constructors

FirefoxProfileManager()

Initializes a new instance of the FirefoxProfileManager class.

public FirefoxProfileManager()

Properties

ExistingProfiles

Gets a ReadOnlyCollection<T> containing FirefoxProfiles representing the existing named profiles for Firefox.

public ReadOnlyCollection<string> ExistingProfiles { get; }

Property Value

ReadOnlyCollection<string>

Methods

GetProfile(string)

Gets a FirefoxProfile with a given name.

public FirefoxProfile GetProfile(string profileName)

Parameters

profileName string

The name of the profile to get.

Returns

FirefoxProfile

A FirefoxProfile with a given name. Returns null if no profile with the given name exists.