Testability ids!

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

What is Testability ids!?

Testability ids! is a Chrome extension developed by https://zagorskisoftwaretester.blogspot.com, and its main feature is "Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.".

Extension Screenshots

screenshot

Download Testability ids! Extension CRX File

Download Testability ids! extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Testability ids! Testability ids!
ID eoldlbdmkajbdpppioegookggkbofjhg
Official URL https://chromewebstore.google.com/detail/testability-ids/eoldlbdmkajbdpppioegookggkbofjhg
Description Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.
File Size 22.67 KB
Installation Count 20
Current Version 0.5
Last Updated 2014-11-21
Publish Date 2014-11-21
Developer https://zagorskisoftwaretester.blogspot.com
Payment Type free
Help Page URL https://github.com/karlosmid/show-me-the-ids
Supported Languages 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"
    }
}