npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@katalon/chrome-recorder

v0.1.4

Published

Generate Katalon Tests from Google Chrome DevTools Recordings

Downloads

12

Readme

Katalon Chrome Recorder

Build npm

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-recorder

The 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 clean

Supported Chrome Devtools Recorder Steps

We only support following steps:

  1. setViewport
  2. navigate
  3. click
  4. change
  5. keyDown
  6. scroll
  7. hover
  8. waitForElement

If the step type is not mentioned above, a warning will be shown.