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
androidPackagestring
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
argumentstringThe 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
argumentsstring[]The arguments to add.
Exceptions
- ArgumentNullException
If
argumentsis null.