All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.selenide.grid.FileContentResponse Maven / Gradle / Ivy

package org.selenide.grid;

import javax.annotation.Nullable;

record FileContentResponse(FileContent value) {
}

record FileContent(
  String filename,
  String contents,
  @Nullable String error,
  @Nullable String message,
  @Nullable String stacktrace
) implements GridResponse {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy