Package net.sourceforge.marathon.action

Examples of net.sourceforge.marathon.action.WindowClosingAction


    private void recordWindowClosing(Window window) {
        List<Window> windows = windowMonitor.getAllWindows();
        if (!windows.contains(window))
            return;

        WindowClosingAction action = new WindowClosingAction(WindowIdCreator.createWindowId(window, windowMonitor), scriptModel);
        recorder.record(action.enscript());
    }
View Full Code Here


        if (window == null) {
            logger.info("Could not find window in the open window list....");
            return;
        }
        try {
            new WindowClosingAction(window).play(finder);
        } catch (Throwable t) {
            logger.info("Warning: ignoring an error in window closed. The AUT might have been closed programmatically.");
            logger.info("windowClosed: " + t.getMessage());
        }
    }
View Full Code Here

TOP

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

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.