Interface SupportsShouldUseSingletonTestManagerOption<T extends BaseOptions<T>>

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

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

    • SHOULD_USE_SINGLETON_TEST_MANAGER_OPTION

      static final String SHOULD_USE_SINGLETON_TEST_MANAGER_OPTION
      See Also:
  • Method Details

    • shouldUseSingletonTestManager

      default T shouldUseSingletonTestManager()
      Enforce usage of the default proxy for test management within WebDriverAgent.
      Returns:
      self instance for chaining.
    • setShouldUseSingletonTestManager

      default T setShouldUseSingletonTestManager(boolean value)
      Use default proxy for test management within WebDriverAgent. Setting this to false sometimes helps with socket hangup problems. Defaults to true.
      Parameters:
      value - Whether to use the default proxy for test management within WebDriverAgent.
      Returns:
      self instance for chaining.
    • doesUseSingletonTestManager

      default Optional<Boolean> doesUseSingletonTestManager()
      Get whether to use the default proxy for test management within WebDriverAgent.
      Returns:
      True or false.