AutomaticXpathGenerator

This will generate xpaths for elements on the webpage

Vad är AutomaticXpathGenerator?

AutomaticXpathGenerator är en Chrome-tillägg utvecklad av Aamir Mohammed Suhail, och dess huvudfunktion är "This will generate xpaths for elements on the webpage".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner AutomaticXpathGenerator-förlängningens CRX-fil

Ladda ner AutomaticXpathGenerator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn AutomaticXpathGenerator AutomaticXpathGenerator
ID amcbnabgjffdhibpmgcnpnmjpfjliikh
Officiell webbadress https://chromewebstore.google.com/detail/automaticxpathgenerator/amcbnabgjffdhibpmgcnpnmjpfjliikh
Beskrivning This will generate xpaths for elements on the webpage
Filstorlek 21.71 KB
Antal Installationer 657
Aktuell Version 1.2
Senast Uppdaterad 2021-06-21
Publiceringsdatum 2021-06-16
Betyg 2.33/5 Totalt 6 Betyg
Utvecklare Aamir Mohammed Suhail
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}