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によって開発されたChromeの拡張機能で、その主な機能は「Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.」です。

拡張機能のスクリーンショット

screenshot

Testability ids!拡張機能のCRXファイルをダウンロード

Testability ids!拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    }
}