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.”。
擴展截圖
下載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! |
ID | eoldlbdmkajbdpppioegookggkbofjhg |
官方網址 | 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" } } |