interactable
Checks selectors on a site to see if interactable elements contain a certain selector.
interactable là gì?
interactable là một tiện ích mở rộng Chrome được phát triển bởi Airtasker, và tính năng chính của nó là "Checks selectors on a site to see if interactable elements contain a certain selector.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng interactable
Tải xuống các tệp mở rộng interactable 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
Web automation is hard enough as it is. At Airtasker we have found that by adding a test specific selector to intractable elements reduces the overall interactions/flakiness of tests easier as the selectors are only used for automation tests. interactable is a lightweight extension that will highlight clickable elements on a website that do not have a specific tag attached. This is designed to make it easier for engineers to identify automation gaps in their website right when they are make changes. Currently supported elements: Input fields. Text areas. Links. Buttons. Plugin does not currently support any element that has an onClick event. To Use: Right click the interactable icon and select options. Enter the URL you want interactable to check (will all pages on that domain). Enter the selector you want to look for. Click Save Please feel free to contribute to this extension at: https://github.com/airtasker/interactable
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | interactable |
ID | kipfhcghcmfhmdjmadnkgcpikhcjgfpi |
URL Chính Thức | https://chromewebstore.google.com/detail/interactable/kipfhcghcmfhmdjmadnkgcpikhcjgfpi |
Mô tả | Checks selectors on a site to see if interactable elements contain a certain selector. |
Kích Thước Tệp | 18.79 KB |
Số Lần Cài Đặt | 31 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2018-08-03 |
Ngày Phát Hành | 2018-08-02 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Airtasker |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "interactable", "version": "1.0.1", "description": "Checks selectors on a site to see if interactable elements contain a certain selector.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon16.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "tabs", "storage", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false } } |