Testability ids!

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

Qu'est-ce que Testability ids! ?

Testability ids! est une extension Chrome développée par https://zagorskisoftwaretester.blogspot.com, et sa fonction principale est "Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Testability ids!

Téléchargez les fichiers d'extension Testability ids! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Testability ids! Testability ids!
ID eoldlbdmkajbdpppioegookggkbofjhg
URL Officiel 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.
Taille du Fichier 22.67 KB
Nombre d'Installations 20
Version Actuelle 0.5
Dernière Mise à Jour 2014-11-21
Date de Publication 2014-11-21
Développeur https://zagorskisoftwaretester.blogspot.com
Type de Paiement free
URL de la Page d'Aide https://github.com/karlosmid/show-me-the-ids
Langues Prises en Charge 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"
    }
}