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
公式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
Eメール [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
    }
}