interactable
Checks selectors on a site to see if interactable elements contain a certain selector.
interactable란 무엇입니까?
interactable은(는) Airtasker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Checks selectors on a site to see if interactable elements contain a certain selector."입니다.
확장 프로그램 스크린샷
interactable 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | interactable |
ID | kipfhcghcmfhmdjmadnkgcpikhcjgfpi |
공식 URL | https://chromewebstore.google.com/detail/interactable/kipfhcghcmfhmdjmadnkgcpikhcjgfpi |
설명 | Checks selectors on a site to see if interactable elements contain a certain selector. |
파일 크기 | 18.79 KB |
설치 횟수 | 31 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2018-08-03 |
출시 날짜 | 2018-08-02 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Airtasker |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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 } } |