Interface SupportsFlutterEnableMockCamera<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>
,org.openqa.selenium.Capabilities
,java.io.Serializable
- All Known Implementing Classes:
FlutterDriverOptions
public interface SupportsFlutterEnableMockCamera<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
FLUTTER_ENABLE_MOCK_CAMERA_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<java.lang.Boolean>
doesFlutterEnableMockCamera()
Retrieves the current value of the 'flutterEnableMockCamera' capability, if available.default T
setFlutterEnableMockCamera(boolean value)
Sets the 'flutterEnableMockCamera' capability to the specified value.-
Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
Field Detail
-
FLUTTER_ENABLE_MOCK_CAMERA_OPTION
static final java.lang.String FLUTTER_ENABLE_MOCK_CAMERA_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
setFlutterEnableMockCamera
default T setFlutterEnableMockCamera(boolean value)
Sets the 'flutterEnableMockCamera' capability to the specified value.- Parameters:
value
- the value to set for the 'flutterEnableMockCamera' capability- Returns:
- an instance of type
T
with the updated capability set
-
doesFlutterEnableMockCamera
default java.util.Optional<java.lang.Boolean> doesFlutterEnableMockCamera()
Retrieves the current value of the 'flutterEnableMockCamera' capability, if available.- Returns:
- an
Optional<Boolean>
containing the current value of the capability,
-
-