Interface SupportsAllowProvisioningDeviceRegistrationOption<T extends BaseOptions<T>>

All Superinterfaces:
CanSetCapability<T>, org.openqa.selenium.Capabilities, Serializable
All Known Implementing Classes:
XCUITestOptions

public interface SupportsAllowProvisioningDeviceRegistrationOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
  • Field Details

    • ALLOW_PROVISIONING_DEVICE_REGISTRATION_OPTION

      static final String ALLOW_PROVISIONING_DEVICE_REGISTRATION_OPTION
      See Also:
  • Method Details

    • 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 Optional<Boolean> doesAllowProvisioningDeviceRegistration()
      Get whether to allow xcodebuild to register your destination device on the developer portal.
      Returns:
      True or false.