AutomaticXpathGenerator

This will generate xpaths for elements on the webpage

¿Qué es AutomaticXpathGenerator?

AutomaticXpathGenerator es una extensión de Chrome desarrollada por Aamir Mohammed Suhail, y su función principal es "This will generate xpaths for elements on the webpage".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión AutomaticXpathGenerator

Descarga archivos de extensión AutomaticXpathGenerator en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre AutomaticXpathGenerator AutomaticXpathGenerator
ID amcbnabgjffdhibpmgcnpnmjpfjliikh
URL Oficial https://chromewebstore.google.com/detail/automaticxpathgenerator/amcbnabgjffdhibpmgcnpnmjpfjliikh
Descripción This will generate xpaths for elements on the webpage
Tamaño del Archivo 21.71 KB
Cantidad de Instalaciones 657
Versión Actual 1.2
Última Actualización 2021-06-21
Fecha de Publicación 2021-06-16
Calificación 2.33/5 Total de 6 Calificaciones
Desarrollador Aamir Mohammed Suhail
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}