Table of Contents

Class FirefoxAndroidOptions

Namespace
OpenQA.Selenium.Firefox
Assembly
WebDriver.dll

Generates the capabilities for automating Firefox applications on Android

public class FirefoxAndroidOptions : AndroidOptions
Inheritance
FirefoxAndroidOptions
Inherited Members

Constructors

FirefoxAndroidOptions(string)

Initializes a new instance of the FirefoxAndroidOptions class.

public FirefoxAndroidOptions(string androidPackage)

Parameters

androidPackage string

Properties

AndroidIntentArguments

Gets a read-only list of the intent arguments set for this set of options.

public ReadOnlyCollection<string> AndroidIntentArguments { get; }

Property Value

ReadOnlyCollection<string>

Methods

AddIntentArgument(string)

Argument to launch the intent with. The given intent arguments are appended to the "am start" command.

public void AddIntentArgument(string argument)

Parameters

argument string

The argument to add.

AddIntentArguments(params string[])

Arguments to launch the intent with. The given intent arguments are appended to the "am start" command.

public void AddIntentArguments(params string[] arguments)

Parameters

arguments string[]

The arguments to add.