01: package com.canoo.webtest.steps;
02:
03: /**
04: * @author Denis N. Antonioli
05: */
06:
07: public class AbstractBrowserActionTest extends StepTest {
08:
09: protected Step createStep() {
10: return new AbstractBrowserAction() {
11: public void doExecute() throws Exception {
12: // noop
13: }
14: };
15: }
16:
17: }
|