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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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