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

com.tidal.wave.command.ExecutorCommands Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.tidal.wave.command;

import org.openqa.selenium.By;

import java.util.List;

public interface ExecutorCommands {
     T invokeCommand(Class commandClass, String method);

     T invokeCommand(Class 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