public boolean canCreate() {
return true;
}
public TestStepConfig createConfig(String stepName) {
ManualTestStepConfig testRequestConfig = ManualTestStepConfig.Factory.newInstance();
TestStepConfig testStep = TestStepConfig.Factory.newInstance();
testStep.setType(MANUAL_TEST_STEP);
testStep.setConfig(testRequestConfig);
testStep.setName(stepName);