interactable

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

Τι είναι το interactable;

Το interactable είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Airtasker, και η κύρια λειτουργία του είναι "Checks selectors on a site to see if interactable elements contain a certain selector.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης interactable

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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
    }
}