Xpath Ninja

Generates xpath on clicking the element.

Cos'è Xpath Ninja?

Xpath Ninja è un'estensione di Chrome sviluppata da jayantdawaniextension, e la sua funzione principale è "Generates xpath on clicking the element.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Xpath Ninja

Scarica i file di estensione Xpath Ninja 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

                        Xpath Ninja is a game-changing extension for Chrome that revolutionizes the way you generate XPath expressions. With its user-friendly interface and intuitive functionality, Xpath Ninja allows you to effortlessly generate XPath expressions and their corresponding variable names by simply clicking on elements within any webpage.

No more tedious manual XPath creation or guesswork. Xpath Ninja empowers developers, testers, and enthusiasts of all skill levels to quickly and accurately generate XPath expressions with just a few clicks. Whether you're a automation enthusiast, web developer professional, or an quality assurance, Xpath Ninja is the must-have tool in your arsenal.

And now, accessing Xpath Ninja is even easier! After installing the extention open the inspect panel with the shortcut Ctrl+Shift+I, you can navigate to the "Elements" panel section and find the dedicated "Xpath Ninja" panel. This streamlined integration ensures that you have instant access to Xpath Ninja's powerful features, right at your fingertips.

But Xpath Ninja doesn't stop there. We've taken it a step further by introducing a seamless integration with Django, the renowned Python web framework. By following our comprehensive documentation, you can unlock the true potential of Xpath Ninja. With the "Start New Test Case" button, you can effortlessly create Python files containing all the XPath expressions for your specific test cases, without the need for complex setup or configuration.

Xpath Ninja simplifies your workflow, saves you time, and enhances your productivity. Experience the power of effortless XPath generation today with Xpath Ninja, the essential Chrome extension for automation testing and web development.
Get ready to conquer XPath challenges like a true ninja!

For any support or inquiries, please don't hesitate to reach out to [email protected]                    

Informazioni di Base sull'Estensione

Nome Xpath Ninja Xpath Ninja
ID lmichhbmhiejfedjilpaphhdcbidehgh
URL Ufficiale https://chromewebstore.google.com/detail/xpath-ninja/lmichhbmhiejfedjilpaphhdcbidehgh
Descrizione Generates xpath on clicking the element.
Dimensione del File 25.47 KB
Conteggio Installazioni 176
Versione Corrente 2.0.2
Ultimo Aggiornamento 2023-11-25
Data di Pubblicazione 2023-06-15
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore jayantdawaniextension
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://docs.google.com/document/d/1_dXne5t7MXysXIADhLgHOtqsaV5MfHth8JEO8A7fH0I/edit?usp=sharing
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Xpath Ninja",
    "version": "2.0.2",
    "description": "Generates xpath on clicking the element.",
    "permissions": [
        "clipboardWrite",
        "storage",
        "sidePanel"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "side_panel": {
        "default_path": "side_panel.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "csp": "script-src 'self' 'nonce-jfredfjcvnswesd'; object-src 'self'"
        }
    ],
    "devtools_page": "devtools.html",
    "action": {
        "default_title": "Xpath Ninja",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "sidebar.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}