ToggleCode

An extension that converts browser interaction to selenium code for Python and Java

Cos'è ToggleCode?

ToggleCode è un'estensione di Chrome sviluppata da DigitalMatic, e la sua funzione principale è "An extension that converts browser interaction to selenium code for Python and Java".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ToggleCode

Scarica i file di estensione ToggleCode 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

                        This extension allows users to click on an html element on a web page and converts the select item to Selenium code for Python or Java. It is a quick way to create a workflow automation by referencing the xpath of the selected elements.

Get working by clicking Start , load webpage and select your elements for code generation. 

Version 1.0.2 includes bug fixes.                    

Informazioni di Base sull'Estensione

Nome ToggleCode ToggleCode
ID njnmbjdjbmboaiagnaompgnglfmgfncl
URL Ufficiale https://chromewebstore.google.com/detail/togglecode/njnmbjdjbmboaiagnaompgnglfmgfncl
Descrizione An extension that converts browser interaction to selenium code for Python and Java
Dimensione del File 349 KB
Conteggio Installazioni 114
Versione Corrente 1.0.2
Ultimo Aggiornamento 2021-11-11
Data di Pubblicazione 2021-08-10
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore DigitalMatic
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ToggleCode",
    "version": "1.0.2",
    "description": "An extension that converts browser interaction to selenium code for Python and Java",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/file_32.png",
            "64": "images\/file_64.png"
        }
    },
    "icons": {
        "16": "images\/file_32.png",
        "64": "images\/file_64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}