Package net.sourceforge.marathon.action

Examples of net.sourceforge.marathon.action.WaitPropertyAction


                        String value;
                        if (property.equals("Text"))
                            value = forComponent.getComparableObject().toString();
                        else
                            value = forComponent.getProperty(property);
                        enscript = new WaitPropertyAction(forComponent.getComponentId(), property, value, scriptModel,
                                windowMonitor).enscript(forComponent);
                    }
                    if (getFinder() != null)
                        getFinder().markUsed(forComponent);
                    getRecorder().record(enscript);
View Full Code Here


    public void assertProperty(ComponentId source, String property, String value) {
        play(new AssertPropertyAction(source, property, value, scriptModel, windowMonitor));
    }

    public void waitProperty(ComponentId source, String property, String value) {
        play(new WaitPropertyAction(source, property, value, scriptModel, windowMonitor));
    }
View Full Code Here

TOP

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

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.