Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Test ID GeneratorNew to Visual Studio Code? Get it now.
Test ID Generator

Test ID Generator

omeerdvrn

|
70 installs
| (1) | Free
It is an extension to generate test ID's.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Test ID Generator

Test ID Generator

Overview

The Test ID Generator is a Visual Studio Code extension designed to simplify the process of adding test identifiers (data-test attributes) to HTML elements in web development projects. If your codebase lacks test IDs and you find yourself spending valuable time manually adding them, this extension is here to be your time-saving ally.

Key Features

  • Effortlessly assign test IDs to HTML elements with a simple keyboard shortcut.
  • Customize the test ID attribute keyword via a user-configurable .testidrc.json file.
  • Intelligent generation of test IDs from existing element IDs for a seamless testing experience.
  • Support for various file types, including HTML, Vue, and JSX.

Demo Preview

Getting Started

Installation

  • Visual Studio Code Marketplace

Via Visual Studio Code

Launch Quick Open:

  • Linux Ctrl+P
  • macOS ⌘P
  • Windows Ctrl+P

Paste the following command and press Enter.:

ext install test-id-generator

Usage

By default Shift + Alt + T (Cmd + Shift + T for Mac) key combination inserts test id to all the html elements.

It checks the element for the id first. If the element has it, it copies it to the test id. If the element has not, it generates the test id by adding elementName to the defaultTestId from the config.

The attributeKeyword is for test id attribute (data-test, data-test-id, test-id ...)

The ignoreElements is for not adding test id to all the html elements. (<template>, <script>, <style> ...)

Config

// .testidrc.json
{
  "attributeKeyword": "data-test-id",
  "ignoreElements": [
    "template",
    "script",
    "style",
    "body",
    "head",
    "html",
    "header",
    "footer",
    "meta",
    "title",
    "link"
  ],
  "defaultTestId": "test"
}

Contribution

I believe in the power of collaboration! This project is open to contributions from the community. If you're passionate about testing in web development and want to contribute, check out the project on GitHub, and let's build something amazing together! 🤝✨

License

This project is licensed under the MIT License.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft