Defining a driver runner

What is a driver runner

A Driver Runner (DriverRunner) is a standalone component which doesn’t process or return any data.

A Driver runner must have a @RunAtDriver method without any parameter.

@RunAtDriver
public void run() {
    ...;
}
Scroll to top