AutomaticXpathGenerator

This will generate xpaths for elements on the webpage

Cos'è AutomaticXpathGenerator?

AutomaticXpathGenerator è un'estensione di Chrome sviluppata da Aamir Mohammed Suhail, e la sua funzione principale è "This will generate xpaths for elements on the webpage".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione AutomaticXpathGenerator

Scarica i file di estensione AutomaticXpathGenerator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension is used to generate the xpaths automatically for the web page. It will generate the xpaths for each and every element on the web page and displays it next to the corresponding web elements. User has to just click the xpath to copy and use it in automation script. Also for anyone who doesn't know how to write the xpaths, this extension will be very useful.                    

Informazioni di Base sull'Estensione

Nome AutomaticXpathGenerator AutomaticXpathGenerator
ID amcbnabgjffdhibpmgcnpnmjpfjliikh
URL Ufficiale https://chromewebstore.google.com/detail/automaticxpathgenerator/amcbnabgjffdhibpmgcnpnmjpfjliikh
Descrizione This will generate xpaths for elements on the webpage
Dimensione del File 21.71 KB
Conteggio Installazioni 657
Versione Corrente 1.2
Ultimo Aggiornamento 2021-06-21
Data di Pubblicazione 2021-06-16
Valutazione 2.33/5 Totale 6 Valutazioni
Sviluppatore Aamir Mohammed Suhail
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutomaticXpathGenerator",
    "version": "1.2",
    "description": "This will generate xpaths for elements on the webpage",
    "icons": {
        "128": ".\/icons\/128_g.png",
        "48": ".\/icons\/48_g.png",
        "32": ".\/icons\/32_g.png",
        "16": ".\/icons\/16_g.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "demo.html",
        "default_icon": ".\/icons\/128_g.png"
    }
}