Testing Playground

Simple and complete DOM testing playground that encourage good testing practices.

什么是Testing Playground?

Testing Playground是由stephan开发的Chrome扩展程序,该扩展的主要功能是“Simple and complete DOM testing playground that encourage good testing practices.”。

扩展截图

screenshot

下载Testing Playground扩展crx文件

下载Testing Playground扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Adds Testing-Playground to the Chrome Developer Tools. 

Testing Playground is an extension that helps you find the best queries to select elements for the open-source Testing-Library family. It allows you to inspect the element hierarchies in the Chrome Developer Tools, and provides you with suggestions on how to select them, while encouraging good testing practices.

You will get two new tabs in your Chrome DevTools: "🐸 Testing Playground" as a tab, and as a side panel under the "Elements" tab.

By selecting one of the elements on the page, you can inspect the different queries that can be used to select the element in your tests, and get feedback that tells you when and why there are better queries available.

If you inspect an element on the page using the regular Elements tab, then switch over to the Testing Playground tab, that element will be automatically selected.                    

扩展基本信息

名称 Testing Playground Testing Playground
ID hejbmebodbijjdhflfknehhcgaklhano
官方URL https://chromewebstore.google.com/detail/testing-playground/hejbmebodbijjdhflfknehhcgaklhano
简介 Simple and complete DOM testing playground that encourage good testing practices.
文件大小 646 KB
安装次数 47,498
当前版本 1.16.3
更新时间 2021-05-31
上架时间 2020-06-23
评分 4.65/5 共48次评分
开发者 stephan
电子邮箱 [email protected]
付费类型 free
扩展官网 https://testing-playground.com/
帮助页面URL https://github.com/smeijer/testing-playground/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Testing Playground",
    "description": "Simple and complete DOM testing playground that encourage good testing practices.",
    "version": "1.16.0",
    "version_name": "1.16.3",
    "minimum_chrome_version": "49",
    "icons": {
        "16": "icons\/16-production.png",
        "32": "icons\/32-production.png",
        "48": "icons\/48-production.png",
        "128": "icons\/128-production.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16-production.png",
            "32": "icons\/32-production.png",
            "48": "icons\/48-production.png",
            "128": "icons\/128-production.png"
        }
    },
    "web_accessible_resources": [
        "window\/testing-library.js"
    ],
    "devtools_page": "devtools\/main.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-6UcmjVDygSSU8p+3s7E7Kz8EG\/ARhPADPRUm9P90HLM='; object-src 'self'",
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script\/contentScript.js"
            ],
            "run_at": "document_start"
        }
    ]
}