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! là gì?

Testability ids! là một tiện ích mở rộng Chrome được phát triển bởi https://zagorskisoftwaretester.blogspot.com, và tính năng chính của nó là "Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Testability ids!

Tải xuống các tệp mở rộng Testability ids! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Testability ids! Testability ids!
ID eoldlbdmkajbdpppioegookggkbofjhg
URL Chính Thức https://chromewebstore.google.com/detail/testability-ids/eoldlbdmkajbdpppioegookggkbofjhg
Mô tả Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree.
Kích Thước Tệp 22.67 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2014-11-21
Ngày Phát Hành 2014-11-21
Nhà Phát Triển https://zagorskisoftwaretester.blogspot.com
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/karlosmid/show-me-the-ids
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}