Class ChromiumDriverInfo

java.lang.Object
org.openqa.selenium.chromium.ChromiumDriverInfo
All Implemented Interfaces:
WebDriverInfo
Direct Known Subclasses:
ChromeDriverInfo, EdgeDriverInfo

public abstract class ChromiumDriverInfo extends Object implements WebDriverInfo
  • Constructor Details

    • ChromiumDriverInfo

      public ChromiumDriverInfo()
  • Method Details

    • getMaximumSimultaneousSessions

      public int getMaximumSimultaneousSessions()
      Description copied from interface: WebDriverInfo
      Some browsers require all the resources of the current system in order to run (for example, Safari on iOS) and so do not support multiple simultaneous sessions on the same system. Other browsers can create isolated state for each new WebDriver instance.

      The count of simultaneous sessions is typically 1, some multiple of the available number of cores, or Integer.MAX_VALUE if the number is unbounded or no-one cares.

      Specified by:
      getMaximumSimultaneousSessions in interface WebDriverInfo