WebDriver Element Locator

Chrome Port of WebDriver Element Locator

O que é WebDriver Element Locator?

WebDriver Element Locator é uma extensão do Chrome desenvolvida por gertdreyer, e sua principal característica é "Chrome Port of WebDriver Element Locator".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão WebDriver Element Locator

Baixe arquivos de extensão WebDriver Element Locator 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

                        To use this extension, simply right click on the web element you wish to locate, select an appropriate locator string and it'll be copied to your clipboard.

This extension will attempt to populate the context menu with usable webdriver XPATH-based findElement commands for the dotnet, python and ruby bindings and Support Locator Library references for the focused web element.

To help prevent buggy tests (and save your time debugging), it will also check the locators for uniqueness, signified by red crosses and green ticks.

In addition, if elements have long, fragile, auto-generated attributes such as id="ctl00_ElementContainer_Inputs_txtForename" it will attempt to locate based on the final (and most significant) part of the value only.

If it struggles to locate via attributes it will also attempt to locate via text value.

After installing the extension a browser restart is recommended to ensure the extension functions as expected.                    

Informações Básicas da Extensão

Nome WebDriver Element Locator WebDriver Element Locator
ID cjighmmbcdpbfnhinpakjloafcpmefgl
URL Oficial https://chromewebstore.google.com/detail/webdriver-element-locator/cjighmmbcdpbfnhinpakjloafcpmefgl
Descrição Chrome Port of WebDriver Element Locator
Tamanho do Arquivo 21.57 KB
Contagem de Instalações 1,406
Versão Atual 1.5
Última Atualização 2023-03-16
Data de Publicação 2021-11-24
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor gertdreyer
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/gertdreyer/WebDriver-Element-Locator/tree/main
URL da Página de Ajuda https://github.com/gertdreyer/WebDriver-Element-Locator/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebDriver Element Locator",
    "description": "Chrome Port of WebDriver Element Locator",
    "version": "1.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "32": "webdev-32.png",
        "64": "webdev-64.png"
    }
}