blob: f878f494f59e1bceea9a3d975e8151f2088d3427 [file] [log] [blame]
library webdriver.stepper;
import 'dart:async';
class Stepper {
const Stepper();
/// returns true if command should be executed, false if should not be executed.
Future<bool> step(String method, String command, params) =>
new Future.value(true);
}