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.”。

擴展截圖

screenshot

下載interactable擴展crx文件

下載interactable擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 interactable
ID kipfhcghcmfhmdjmadnkgcpikhcjgfpi
官方網址 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
    }
}