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