Interface SupportsCustomSslCertOption<T extends BaseOptions<T>>

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

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

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    default Optional<String>
    Get the SSL certificate content.
    default T
    Adds a root SSL certificate to IOS Simulator.

    Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability

    amend, setCapability

    Methods inherited from interface org.openqa.selenium.Capabilities

    asMap, get, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatformName, is, merge, required
  • Field Details

  • Method Details

    • setCustomSSLCert

      default T setCustomSSLCert(String cert)
      Adds a root SSL certificate to IOS Simulator. The certificate content must be provided in PEM format.
      Parameters:
      cert - Certificate content in PEM format.
      Returns:
      self instance for chaining.
    • getCustomSSLCert

      default Optional<String> getCustomSSLCert()
      Get the SSL certificate content.
      Returns:
      Certificate content.