Robocorp Recorder

A browser extension that records user action and scans the page to generate RobotFramework scripts

什麼是Robocorp Recorder?

Robocorp Recorder是由Robocorp開發的Chrome擴展程式,該擴展的主要功能是“A browser extension that records user action and scans the page to generate RobotFramework scripts”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Robocorp Recorder擴展crx文件

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

擴展使用說明

                        A browser extension that generates RobotFramework automation scripts for SeleniumLibrary and Browser. Useful for creating script to work as a "skeleton" to start programming tests and / or RPA on top of.

Forked from Wendy's Robotcorder https://github.com/sohwendy/Robotcorder

Use by opening the extension, configuring desired target library and mode (RPA or test automation) and then either scanning the page for selectors / locators or using record mode to save done user actions as a script.

See more documentation and info at https://github.com/robocorp/Robocorp-Recorder#robocorp-recorder                    

擴展基本資訊

名稱 Robocorp Recorder Robocorp Recorder
ID mcecdbgadanapabbhbejbkmmgcifcdbn
官方網址 https://chrome.google.com/webstore/detail/mcecdbgadanapabbhbejbkmmgcifcdbn
簡介 A browser extension that records user action and scans the page to generate RobotFramework scripts
檔案大小 203 KB
安裝次數 1,511
目前版本 0.6.2
更新時間 2022-04-01
上架時間 2021-01-08
評分 5.00/5 共 2 次評分
開發者 Robocorp
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/robocorp/Robotcorder/
說明頁面URL https://github.com/robocorp/Robotcorder/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Robocorp Recorder",
    "version": "0.6.2",
    "homepage_url": "https:\/\/github.com\/robocorp\/Robotcorder#robocorp-recorder",
    "description": "A browser extension that records user action and scans the page to generate RobotFramework scripts",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            ".\/src\/constants.js",
            ".\/src\/translator\/robot-translator.js",
            ".\/src\/background.js"
        ],
        "persistent": true
    },
    "options_page": ".\/src\/options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/locator\/xpath-locator.js",
                ".\/src\/locator\/tree-builder.js",
                ".\/src\/locator\/classifier.js",
                ".\/src\/locator\/scanner.js",
                ".\/src\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "assets\/mark-128.png",
        "default_popup": "src\/popup.html"
    },
    "icons": {
        "16": "assets\/mark-16.png",
        "32": "assets\/mark-32.png",
        "48": "assets\/mark-48.png",
        "128": "assets\/mark-128.png",
        "256": "assets\/mark-256.png"
    },
    "permissions": [
        "downloads",
        "storage"
    ]
}