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! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://zagorskisoftwaretester.blogspot.com และคุณลักษณะหลักของมันคือ "Adds to all html elements from DOM tree data-testabilityid attribute with unique value based on element path in document DOM tree."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Testability ids!

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}