ToggleCode
An extension that converts browser interaction to selenium code for Python and Java
Co to jest ToggleCode?
ToggleCode to rozszerzenie Chrome opracowane przez DigitalMatic, a jego główną funkcją jest „An extension that converts browser interaction to selenium code for Python and Java”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ToggleCode
Pobierz pliki rozszerzeń ToggleCode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | ToggleCode |
ID | njnmbjdjbmboaiagnaompgnglfmgfncl |
Oficjalny URL | https://chromewebstore.google.com/detail/togglecode/njnmbjdjbmboaiagnaompgnglfmgfncl |
Opis | An extension that converts browser interaction to selenium code for Python and Java |
Rozmiar pliku | 349 KB |
Liczba instalacji | 114 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2021-11-11 |
Data Publikacji | 2021-08-10 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | DigitalMatic |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |