@katalon/chrome-recorder v0.1.4
Katalon Chrome Recorder
This repo provide tools to convert JSON user flows from Google Chrome DevTools Recorder to Katalon test scripts programmatically.
โ
Converts multiple recordings to Katalon tests in one go (out-of-the-box glob support)
๐ User can pass their custom path to export tests.
๐ Users can also use a dry run to see the interim output of the recordings
๐จโ๐ป Programmatic API which users can use in their own project to create plugins or custom scripts.
Alternatively, you can export JSON user flows as Katalon test scripts straight away from Chrome DevTools with our Katalon Recorder Chrome extension.
See Create Katalon test using Google Chrome DevTools Recorder to learn more.
๐ Installation
npm install -g @katalon/chrome-recorder๐ Usage
To quickly run the interactive CLI, run:
npx @katalon/chrome-recorderThe CLI will prompt you to enter the path of directory or file of the chrome devtool recordings that you will modify and path to write the generated Katalon tests
โก๏ธ Transform individual recordings
npx @katalon/chrome-recorder <path to the chrome devtools recording>โก๏ธ Transform multiple recordings
npx @katalon/chrome-recorder <path to the chrome devtools recording>*.json๐ By default output will be written to katalon folder. If you don't have these folders, tool will create it for you or install katalon by running npm init katalon in your project.
You can specify different output directory, specify that via cli
npx @katalon/chrome-recorder <path to the chrome devtools recording> --output=<folder-name>โ๏ธ CLI Options
| Option | Description |
|---|---|
| -d, --dry | Dry run the output of the transformed recordings |
| -o, --output | Output location of the files generated by the exporter |
๐ป Programmatic API
import { katalonStringifyChromeRecording } from '@katalon/chrome-recorder';
const recordingContent = {
title: 'recording',
steps: [
{
type: 'setViewport',
width: 1905,
height: 223,
deviceScaleFactor: 1,
isMobile: false,
hasTouch: false,
isLandscape: false,
},
],
};
const stringifiedContent = await katalonStringifyChromeRecording(
JSON.stringify(recordingContent),
);
console.log(stringifiedContent);
// Console Log output
//
// describe('recording', function () {
// it('tests recording', function (browser) {
// browser.windowRect({ width: 1905, height: 223 });
// });
// });๐ Documentation
You can find about more about Programmatic API here
๐ Issues
Issues with this schematic can filed here
If you want to contribute (or have contributed in the past), feel free to add yourself to the list of contributors in the package.json before you open a PR!
๐จโ๐ป Development
Getting started
๐ ๏ธ Node.js and npm are required for the scripts. Make sure it's installed on your machine.
โฌ๏ธ Install the dependencies for the katalon chrome recorder tool
npm install๐ทโโ๏ธ Build the tools using typescript compiler
npm run build๐ Run the tool
./bin/katalon-chrome-recorder.js๐งช Unit Testing
Run the unit tests using mocha as a runner and test framework
npm run testโป๏ธ Clean build files
npm run cleanSupported Chrome Devtools Recorder Steps
We only support following steps:
setViewportnavigateclickchangekeyDownscrollhoverwaitForElement
If the step type is not mentioned above, a warning will be shown.
3 years ago