AutomaticXpathGenerator

This will generate xpaths for elements on the webpage

O que é AutomaticXpathGenerator?

AutomaticXpathGenerator é uma extensão do Chrome desenvolvida por Aamir Mohammed Suhail, e sua principal característica é "This will generate xpaths for elements on the webpage".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão AutomaticXpathGenerator

Baixe arquivos de extensão AutomaticXpathGenerator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome AutomaticXpathGenerator AutomaticXpathGenerator
ID amcbnabgjffdhibpmgcnpnmjpfjliikh
URL Oficial https://chromewebstore.google.com/detail/automaticxpathgenerator/amcbnabgjffdhibpmgcnpnmjpfjliikh
Descrição This will generate xpaths for elements on the webpage
Tamanho do Arquivo 21.71 KB
Contagem de Instalações 657
Versão Atual 1.2
Última Atualização 2021-06-21
Data de Publicação 2021-06-16
Classificação 2.33/5 Total de 6 Avaliações
Desenvolvedor Aamir Mohammed Suhail
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}