Interface SupportsAppWorkingDirOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.String> getAppWorkingDir()
      Get the full path to the folder, which is going to be set as the working dir for the application under test.
      default T setAppWorkingDir​(java.lang.String path)
      Full path to the folder, which is going to be set as the working dir for the application under test.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • APP_WORKING_DIR_OPTION

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

      • setAppWorkingDir

        default T setAppWorkingDir​(java.lang.String path)
        Full path to the folder, which is going to be set as the working dir for the application under test. This is only applicable for classic apps.
        Parameters:
        path - Existing folder path on the server file system.
        Returns:
        self instance for chaining.
      • getAppWorkingDir

        default java.util.Optional<java.lang.String> getAppWorkingDir()
        Get the full path to the folder, which is going to be set as the working dir for the application under test.
        Returns:
        Folder path on the server file system.