Package net.sourceforge.marathon.action

Examples of net.sourceforge.marathon.action.ClickAction


        play(new ClickAction(new ComponentId(componentName, componentInfo), position, clickCount, modifiers, ActionType.CLICK,
                isPopupTrigger, scriptModel, windowMonitor));
    }

    public void hover(Object componentName, int delay, Object componentInfo) {
        ClickAction action = new ClickAction(new ComponentId(componentName, componentInfo), null, 0, null, ActionType.HOVER, false,
                scriptModel, windowMonitor);
        action.setHoverDelay(delay);
        play(action);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.marathon.action.ClickAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.