@FindBy

Generates cssSelector and xPath for Selenium

O que é @FindBy?

@FindBy é uma extensão do Chrome desenvolvida por Vigneshwaran Gopalan, e sua principal característica é "Generates cssSelector and xPath for Selenium".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão @FindBy

Baixe arquivos de extensão @FindBy 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

                        @FindBy is a Google Chrome Web Extension that generates CSS Selectors and XPath for selected items on a web page.
It comes with an intuitive UI that helps the end user understand the DOM structure in a simple tabular form with the element attributes. 
@FindBy enables the user to select the HTML tag attributes and generate relative CSS selectors and XPath. 

The generated CSS selectors and XPath in automation testing tools like Selenium, Protractor, etc.

@FindBy helps UI automation test engineers in generating complete CSS selectors and XPath by just a click of checkboxes.

It's faster and accurate and will save tons of time spent in analyzing the DOM and writing your CSS selectors and XPath.

Let's stop writing custom and complex CSS selectors and XPath and start GENERATING!                    

Informações Básicas da Extensão

Nome @FindBy @FindBy
ID amfagfnjpmboaffcefbgcbafmneemlhf
URL Oficial https://chromewebstore.google.com/detail/findby/amfagfnjpmboaffcefbgcbafmneemlhf
Descrição Generates cssSelector and xPath for Selenium
Tamanho do Arquivo 109 KB
Contagem de Instalações 289
Versão Atual 1.3
Última Atualização 2021-04-14
Data de Publicação 2021-04-02
Classificação 4.27/5 Total de 11 Avaliações
Desenvolvedor Vigneshwaran Gopalan
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.youtube.com/channel/UCjzTDpv9OfyAU-yNGV-96VQ
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "@FindBy",
    "version": "1.3",
    "description": "Generates cssSelector and xPath for Selenium",
    "author": "Vigneshwaran Gopalan",
    "background": {
        "scripts": [
            ".\/jscripts\/FindBy_eventPage.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "web_accessible_resources": [
        "\/icons\/*.png"
    ],
    "icons": {
        "16": ".\/icons\/FindBy.png",
        "48": ".\/icons\/FindBy.png",
        "128": ".\/icons\/FindBy.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                ".\/jscripts\/jquery-3.5.1.min.js",
                ".\/jscripts\/FindBy_cs.js",
                ".\/jscripts\/FindByPopupUI.js"
            ],
            "css": [
                "\/css\/FindByPopup.css",
                "\/css\/w3.css"
            ]
        }
    ]
}