stringifyStep method

void stringifyStep(
  1. Map step
)

Converts a step of the recording from the Recorder panel format into a string. step A step of the recording of a user interaction with the page. This should match Puppeteer's step schema.

Implementation

void stringifyStep(Map step) {
  _wrapped.stringifyStep(step.jsify()!);
}