ToggleCode
An extension that converts browser interaction to selenium code for Python and Java
O que é ToggleCode?
ToggleCode é uma extensão do Chrome desenvolvida por DigitalMatic, e sua principal característica é "An extension that converts browser interaction to selenium code for Python and Java".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ToggleCode
Baixe arquivos de extensão ToggleCode 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
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.
Informações Básicas da Extensão
Nome | ToggleCode |
ID | njnmbjdjbmboaiagnaompgnglfmgfncl |
URL Oficial | https://chromewebstore.google.com/detail/togglecode/njnmbjdjbmboaiagnaompgnglfmgfncl |
Descrição | An extension that converts browser interaction to selenium code for Python and Java |
Tamanho do Arquivo | 349 KB |
Contagem de Instalações | 114 |
Versão Atual | 1.0.2 |
Última Atualização | 2021-11-11 |
Data de Publicação | 2021-08-10 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | DigitalMatic |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |