ToggleCode

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

Wat is ToggleCode?

ToggleCode is een Chrome-extensie ontwikkeld door DigitalMatic, en de belangrijkste functie is "An extension that converts browser interaction to selenium code for Python and Java".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ToggleCode

Download ToggleCode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam ToggleCode ToggleCode
ID njnmbjdjbmboaiagnaompgnglfmgfncl
Officiële URL https://chromewebstore.google.com/detail/togglecode/njnmbjdjbmboaiagnaompgnglfmgfncl
Beschrijving An extension that converts browser interaction to selenium code for Python and Java
Bestandsgrootte 349 KB
Aantal Installaties 114
Huidige Versie 1.0.2
Laatst Bijgewerkt 2021-11-11
Publicatiedatum 2021-08-10
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar DigitalMatic
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}