Testability ids!

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

O que é Testability ids!?

Testability ids! é uma extensão do Chrome desenvolvida por https://zagorskisoftwaretester.blogspot.com, e sua principal característica é "Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Testability ids!

Baixe arquivos de extensão Testability ids! no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Testability ids! Testability ids!
ID eoldlbdmkajbdpppioegookggkbofjhg
URL Oficial https://chromewebstore.google.com/detail/testability-ids/eoldlbdmkajbdpppioegookggkbofjhg
Descrição Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.
Tamanho do Arquivo 22.67 KB
Contagem de Instalações 20
Versão Atual 0.5
Última Atualização 2014-11-21
Data de Publicação 2014-11-21
Desenvolvedor https://zagorskisoftwaretester.blogspot.com
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/karlosmid/show-me-the-ids
Idiomas Suportados 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"
    }
}