Interface SupportsAllowProvisioningDeviceRegistrationOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>
,org.openqa.selenium.Capabilities
,java.io.Serializable
- All Known Implementing Classes:
XCUITestOptions
public interface SupportsAllowProvisioningDeviceRegistrationOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ALLOW_PROVISIONING_DEVICE_REGISTRATION_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default T
allowProvisioningDeviceRegistration()
Allows xcodebuild to register your destination device on the developer portal.default java.util.Optional<java.lang.Boolean>
doesAllowProvisioningDeviceRegistration()
Get whether to allow xcodebuild to register your destination device on the developer portal.default T
setAllowProvisioningDeviceRegistration(boolean value)
Allow xcodebuild to register your destination device on the developer portal if necessary.-
Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
Field Detail
-
ALLOW_PROVISIONING_DEVICE_REGISTRATION_OPTION
static final java.lang.String ALLOW_PROVISIONING_DEVICE_REGISTRATION_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
allowProvisioningDeviceRegistration
default T allowProvisioningDeviceRegistration()
Allows xcodebuild to register your destination device on the developer portal.- Returns:
- self instance for chaining.
-
setAllowProvisioningDeviceRegistration
default T setAllowProvisioningDeviceRegistration(boolean value)
Allow xcodebuild to register your destination device on the developer portal if necessary. Requires a developer account to have been added in Xcode's Accounts preference pane. Defaults to false.- Parameters:
value
- Whether to allow xcodebuild to register your destination device on the developer portal.- Returns:
- self instance for chaining.
-
doesAllowProvisioningDeviceRegistration
default java.util.Optional<java.lang.Boolean> doesAllowProvisioningDeviceRegistration()
Get whether to allow xcodebuild to register your destination device on the developer portal.- Returns:
- True or false.
-
-