interactable

Checks selectors on a site to see if interactable elements contain a certain selector.

interactable क्या है?

interactable Airtasker द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Checks selectors on a site to see if interactable elements contain a certain selector."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में interactable एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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
    }
}