AutomaticXpathGenerator

This will generate xpaths for elements on the webpage

Qu'est-ce que AutomaticXpathGenerator ?

AutomaticXpathGenerator est une extension Chrome développée par Aamir Mohammed Suhail, et sa fonction principale est "This will generate xpaths for elements on the webpage".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension AutomaticXpathGenerator

Téléchargez les fichiers d'extension AutomaticXpathGenerator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom AutomaticXpathGenerator AutomaticXpathGenerator
ID amcbnabgjffdhibpmgcnpnmjpfjliikh
URL Officiel https://chromewebstore.google.com/detail/automaticxpathgenerator/amcbnabgjffdhibpmgcnpnmjpfjliikh
Description This will generate xpaths for elements on the webpage
Taille du Fichier 21.71 KB
Nombre d'Installations 657
Version Actuelle 1.2
Dernière Mise à Jour 2021-06-21
Date de Publication 2021-06-16
Évaluation 2.33/5 Total 6 Évaluations
Développeur Aamir Mohammed Suhail
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}