Interface SupportsAdditionalWebviewBundleIdsOption<T extends BaseOptions<T>>

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

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

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.util.List<java.lang.String>> getAdditionalWebviewBundleIds()
      Get the array of possible bundle identifiers for webviews.
      default T setAdditionalWebviewBundleIds​(java.util.List<java.lang.String> identifiers)
      Array of possible bundle identifiers for webviews.
      • Methods inherited from interface org.openqa.selenium.Capabilities

        asMap, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatform, getPlatformName, getVersion, is, merge
    • Field Detail

      • ADDITIONAL_WEBVIEW_BUNDLE_IDS_OPTION

        static final java.lang.String ADDITIONAL_WEBVIEW_BUNDLE_IDS_OPTION
        See Also:
        Constant Field Values
    • Method Detail

      • setAdditionalWebviewBundleIds

        default T setAdditionalWebviewBundleIds​(java.util.List<java.lang.String> identifiers)
        Array of possible bundle identifiers for webviews. This is sometimes necessary if the Web Inspector is found to be returning a modified bundle identifier for the app. Defaults to [].
        Parameters:
        identifiers - Identifiers list.
        Returns:
        self instance for chaining.
      • getAdditionalWebviewBundleIds

        default java.util.Optional<java.util.List<java.lang.String>> getAdditionalWebviewBundleIds()
        Get the array of possible bundle identifiers for webviews.
        Returns:
        Identifier list.