Package com.canoo.webtest.engine

Source Code of com.canoo.webtest.engine.DefaultWebtestCustomizer

package com.canoo.webtest.engine;

import com.canoo.webtest.ant.WebtestTask;
import com.canoo.webtest.interfaces.IWebtestCustomizer;
import com.canoo.webtest.reporting.StepExecutionListener;
import com.gargoylesoftware.htmlunit.WebClient;

/**
*
* @author marc
*
*/
public class DefaultWebtestCustomizer implements IWebtestCustomizer {

  public StepExecutionListener createExecutionListener(WebtestTask wt) {
   
    return new StepExecutionListener(wt.getConfig().getContext());
  }

  public WebClient customizeWebClient(WebClient wc) {
   
    return wc;
  }

}
TOP

Related Classes of com.canoo.webtest.engine.DefaultWebtestCustomizer

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.