com.codeborne.selenide.Command 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
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