![JAR search and dependency download from the Maven repository](/logo.png)
org.selenide.grid.DownloadedFilesResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenide-grid Show documentation
Show all versions of selenide-grid Show documentation
Selenide = concise API for Selenium WebDriver
package org.selenide.grid;
import javax.annotation.Nullable;
import java.util.List;
record DownloadedFilesResponse(DownloadedFiles value) {
}
record DownloadedFiles(
List names,
@Nullable String error,
@Nullable String message,
@Nullable String stacktrace
) implements GridResponse {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy