Testing Playground

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

Testing Playground क्या है?

Testing Playground stephan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple and complete DOM testing playground that encourage good testing practices."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Testing Playground एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    ]
}