com.codeborne.selenide.FileDownloadMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenide-core Show documentation
Show all versions of selenide-core Show documentation
Selenide = concise API for Selenium WebDriver
package com.codeborne.selenide;
public enum FileDownloadMode {
/**
* Download files via direct http request.
* Works only for {@code } elements.
* Sends GET request to "href" with all cookies from current browser session.
*/
HTTPGET,
/**
* 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.
*/
PROXY,
/**
* Download files to a local "downloads" folder
*/
FOLDER,
/**
* Download files to a local "downloads" folder using CDP
* Works only for chromium based browsers
*/
CDP
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy