Interface SupportsEventTimingsOption<T extends BaseOptions<T>>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String EVENT_TIMINGS_OPTION  
    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> doesEventTimings()
      Get whether the app reports the timings for various Appium-internal events.
      default T eventTimings()
      Set the app to report the timings for various Appium-internal events.
      default T setEventTimings​(boolean bool)
      Set whether the app reports the timings for various Appium-internal events.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • EVENT_TIMINGS_OPTION

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

      • eventTimings

        default T eventTimings()
        Set the app to report the timings for various Appium-internal events.
        Returns:
        self instance for chaining.
      • setEventTimings

        default T setEventTimings​(boolean bool)
        Set whether the app reports the timings for various Appium-internal events.
        Parameters:
        bool - is whether the app enables event timings.
        Returns:
        self instance for chaining.
      • doesEventTimings

        default java.util.Optional<java.lang.Boolean> doesEventTimings()
        Get whether the app reports the timings for various Appium-internal events.
        Returns:
        true if the app reports event timings.