Testability ids!

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

Co to jest Testability ids!?

Testability ids! to rozszerzenie Chrome opracowane przez https://zagorskisoftwaretester.blogspot.com, a jego główną funkcją jest „Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Testability ids!

Pobierz pliki rozszerzeń Testability ids! w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Testability ids! Testability ids!
ID eoldlbdmkajbdpppioegookggkbofjhg
Oficjalny URL https://chromewebstore.google.com/detail/testability-ids/eoldlbdmkajbdpppioegookggkbofjhg
Opis Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.
Rozmiar pliku 22.67 KB
Liczba instalacji 20
Aktualna Wersja 0.5
Ostatnia Aktualizacja 2014-11-21
Data Publikacji 2014-11-21
Deweloper https://zagorskisoftwaretester.blogspot.com
Typ Płatności free
Adres URL Strony Pomocy https://github.com/karlosmid/show-me-the-ids
Obsługiwane Języki 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"
    }
}