Package com.codeborne.selenide
Enum FileDownloadMode
- java.lang.Object
-
- java.lang.Enum<FileDownloadMode>
-
- com.codeborne.selenide.FileDownloadMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FileDownloadMode>
public enum FileDownloadMode extends java.lang.Enum<FileDownloadMode>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileDownloadModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FileDownloadMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HTTPGET
public static final FileDownloadMode HTTPGET
Download files via direct http request. Works only for<a href></a>elements. Sends GET request to "href" with all cookies from current browser session.
-
PROXY
public static final FileDownloadMode PROXY
Download files via selenide embedded proxy server. Works for any elements (e.g. form submission). Doesn't work if you are using custom webdriver without selenide proxy server.
-
FOLDER
public static final FileDownloadMode FOLDER
Download files to a local "downloads" folder
-
-
Method Detail
-
values
public static FileDownloadMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FileDownloadMode c : FileDownloadMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileDownloadMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-