Class FirefoxAndroidOptions
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
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
stringThe 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.