ToggleCode

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

什麼是ToggleCode?

ToggleCode是由DigitalMatic開發的Chrome擴展程式,該擴展的主要功能是“An extension that converts browser interaction to selenium code for Python and Java”。

擴展截圖

screenshot

下載ToggleCode擴展crx文件

下載ToggleCode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 ToggleCode ToggleCode
ID njnmbjdjbmboaiagnaompgnglfmgfncl
官方網址 https://chromewebstore.google.com/detail/togglecode/njnmbjdjbmboaiagnaompgnglfmgfncl
簡介 An extension that converts browser interaction to selenium code for Python and Java
檔案大小 349 KB
安裝次數 114
目前版本 1.0.2
更新時間 2021-11-11
上架時間 2021-08-10
評分 5.00/5 共 2 次評分
開發者 DigitalMatic
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
            ]
        }
    ]
}