Examples of AssertAction


Examples of net.sourceforge.marathon.action.AssertAction

    public void assertText(ComponentId id, String text) {
        play(new AssertText(id, text, scriptModel, windowMonitor));
    }

    public void assertColor(ComponentId id, Color color) {
        play(new AssertAction(id, color, scriptModel, windowMonitor));
    }
View Full Code Here

Examples of net.sourceforge.marathon.action.AssertAction

    public void assertColor(ComponentId id, Color color) {
        play(new AssertAction(id, color, scriptModel, windowMonitor));
    }

    public void assertEnabled(ComponentId id, boolean enabled) {
        play(new AssertAction(id, enabled, scriptModel, windowMonitor));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.