Testability ids!

Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.

Testability ids! क्या है?

Testability ids! https://zagorskisoftwaretester.blogspot.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree."।

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

screenshot

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

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

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

                        Testability ids help testers that need to automate testing of web application.
It recursively walks through web page DOM tree and adds data-testabilityid attribute with value that represents unique element path to the DOM tree root node.
Walk is triggered on every DOM tree change.
You can investigate generated value by using shift+mouse left click when you are over the page element. Value will be printed in javascript console with testability_ids: log filter.

icon credit: http://www.iconarchive.com/artist/rud3boy.html
icon license: http://creativecommons.org/licenses/by-nc-nd/4.0/

Developed by [email protected].
www.tentamen.hr                    

एक्सटेंशन की मूल जानकारी

नाम Testability ids! Testability ids!
ID eoldlbdmkajbdpppioegookggkbofjhg
आधिकारिक URL https://chromewebstore.google.com/detail/testability-ids/eoldlbdmkajbdpppioegookggkbofjhg
विवरण Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.
फ़ाइल का आकार 22.67 KB
स्थापना संख्या 20
वर्तमान संस्करण 0.5
अंतिम अपडेट 2014-11-21
प्रकाशन तिथि 2014-11-21
डेवलपर https://zagorskisoftwaretester.blogspot.com
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/karlosmid/show-me-the-ids
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Testability ids!",
    "description": "Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.",
    "version": "0.5",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "testability_ids.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon128.png"
    }
}