Selenium Capture + Excel Generator

This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel

Cos'è Selenium Capture + Excel Generator?

Selenium Capture + Excel Generator è un'estensione di Chrome sviluppata da Ritesh, e la sua funzione principale è "This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Selenium Capture + Excel Generator

Scarica i file di estensione Selenium Capture + Excel Generator 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

                        Selenium Capture ease the pain of manually finding 
* xPath, 
* element's value, 
* className, 
* ID. 
Sometime developer has to take loading time of pages into account.☹ 

This feature captures the user's interaction like key-stroke and click and generate the table containing 
* user action, 
* interacted-element's attributes, 
* time-out. 
This extension also allow user to manipulate generated table. 
We also have added another feature which allow developer to generate excel sheet and download the same                    

Informazioni di Base sull'Estensione

Nome Selenium Capture + Excel Generator Selenium Capture + Excel Generator
ID kpeffbajohlpbjihlcccpffcjkjkckjj
URL Ufficiale https://chromewebstore.google.com/detail/selenium-capture-+-excel/kpeffbajohlpbjihlcccpffcjkjkckjj
Descrizione This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel
Dimensione del File 433 KB
Conteggio Installazioni 1,178
Versione Corrente 1.1
Ultimo Aggiornamento 2017-09-21
Data di Pubblicazione 2017-09-21
Valutazione 3.33/5 Totale 3 Valutazioni
Sviluppatore Ritesh
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selenium Capture + Excel Generator",
    "description": "This captures keys and clicks and generate a table having action, element attributes, timeout, etc which can be downloaded as excel",
    "version": "1.1",
    "browser_action": {
        "default_icon": "Image\/icon.png",
        "default_popup": "Popup\/popup.html"
    },
    "icons": {
        "16": "Image\/icon.png",
        "32": "Image\/icon.png",
        "64": "Image\/icon.png"
    },
    "background": {
        "scripts": [
            "Background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "Common\/jquery.js",
                "Content\/content.js"
            ],
            "css": [
                "Content\/content.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "background",
        "downloads"
    ]
}