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

se.claremont.taf.websupport.gui.teststeps.ReplayManager Maven / Gradle / Ivy

The newest version!
package se.claremont.taf.websupport.gui.teststeps;

import se.claremont.taf.core.gui.teststructure.TestCaseManager;
import se.claremont.taf.websupport.webdrivergluecode.WebInteractionMethods;

public class ReplayManager {

    static class WebDriverSingleton{
        static WebInteractionMethods web = null;

        public static WebInteractionMethods getInstance(){
            if(web == null){
                web = new WebInteractionMethods(TestCaseManager.getTestCase());
            }
            return web;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy