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

com.codeborne.selenide.Command Maven / Gradle / Ivy

The newest version!
package com.codeborne.selenide;

import com.codeborne.selenide.impl.WebElementSource;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import org.jspecify.annotations.Nullable;

@FunctionalInterface
public interface Command {
  Object[] NO_ARGS = new Object[0];

  @Nullable
  @CanIgnoreReturnValue
  @SuppressWarnings("NullableProblems") // some children can return null, some cannot.
  T execute(SelenideElement proxy, WebElementSource locator, Object @Nullable [] args);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy