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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@progress/kendo-e2e

v5.0.4

Published

Kendo UI end-to-end test utilities.

Downloads

19,991

Readme

kendo-e2e

Selenium based e2e testing for web.

Getting Started

npm install @progress/kendo-e2e --save-dev
import { Browser } from '@progress/kendo-e2e';

describe('My First Test', () => {
    let browser: Browser;

    beforeAll(async () => {
        browser = new Browser();
    });

    afterAll(async () => {
        await browser.close();
    });

    it('should load page and interact', async () => {
        await browser.navigateTo('https://example.com');
        await browser.click('#login-button');
        await browser.type('#username', 'testuser');
        await browser.expect('.welcome-message').toBeVisible();
    });
});

Documentation

AI/Copilot Integration

kendo-e2e ships with a CLI + Skills system designed for AI coding agents (GitHub Copilot, Claude Code, Cursor, etc.). It is ~20-100x more token-efficient than MCP because heavy output (DOM snapshots, screenshots) is saved to disk instead of the context window.

Quick Setup

# Install the AI skill file into your project
npx kendo-e2e install --skills

This copies a SKILL.md file into .github/skills/kendo-e2e/ so your AI agent automatically learns how to write kendo-e2e tests.

CLI Commands

npx kendo-e2e open <url>              # Navigate browser to URL
npx kendo-e2e snapshot                 # DOM snapshot → .kendo-e2e/snapshot-*.yaml
npx kendo-e2e snapshot --root ".k-grid" # Zoom into a component
npx kendo-e2e screenshot               # Screenshot → .kendo-e2e/screenshot-*.png
npx kendo-e2e click <selector>         # Click element
npx kendo-e2e type <selector> <text>   # Type into element
npx kendo-e2e find <selector>          # Query element → .kendo-e2e/find-*.json
npx kendo-e2e page-info                # Title, URL, viewport
npx kendo-e2e eval <script>            # Run JavaScript
npx kendo-e2e close                    # Close session

AI-Powered Workflow

  1. AI navigates to your application via CLI
  2. AI captures a DOM snapshot (saved to disk, not in context)
  3. AI reads the snapshot file to find stable selectors
  4. AI generates kendo-e2e test code
  5. You run the generated tests

Example

Ask your AI assistant: "Generate a test for the Kendo Grid filtering on https://demos.telerik.com/kendo-ui/grid"

The AI will run CLI commands to explore the page and generate:

import { Browser } from '@progress/kendo-e2e';

test('should filter grid', async () => {
  const browser = new Browser();
  await browser.navigateTo('https://demos.telerik.com/kendo-ui/grid');
  await browser.click('.k-grid-header .k-filterable');
  await browser.type('.k-filter-menu input', 'John');
  await browser.click('.k-filter-menu .k-primary');
  await browser.expect('.k-grid tbody tr').toHaveCount(5);
  await browser.close();
});

MCP Server (Legacy)

⚠️ Deprecated: The MCP server is being replaced by the CLI above. MCP returns DOM snapshots inline in the context window (~10K-60K+ tokens per session), while CLI saves them to disk (~200-500 tokens). Use the CLI for agents with shell access. MCP remains available for sandboxed environments (e.g., Claude Desktop) where shell access is not available.

Add to your MCP settings (Claude Desktop or VS Code):

{
  "mcpServers": {
    "kendo-e2e": {
      "command": "npx",
      "args": ["-p", "@progress/kendo-e2e", "kendo-e2e-mcp"]
    }
  }
}

See MCP Server Documentation for detailed tool reference.