com.tidal.wave.command.ExecutorCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wave Show documentation
Show all versions of wave Show documentation
Automation Code Repository
package com.tidal.wave.command;
import org.openqa.selenium.By;
import java.util.List;
public interface ExecutorCommands {
T invokeCommand(Class extends Command> commandClass, String method);
T invokeCommand(Class extends Command> commandClass);
void invokeCommand();
void clearCommands();
Executor withMultipleElements(boolean isTrue);
Executor withText(String text);
Executor withTabIndex(int index);
Executor withTimeToWait(int seconds);
Executor withAttribute(String attributeName);
Executor withCharSequence(CharSequence... sequence);
Executor withSelectIndex(int index);
Executor isVisible(boolean visible);
Executor presenceOfShadownDom();
Executor usingLocator(List locators);
Executor withXYCords(int xCords, int yCords);
Executor withZoomLevel(double zoomLevel);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy