Robocorp Recorder

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

Wat is Robocorp Recorder?

Robocorp Recorder is een Chrome-extensie ontwikkeld door Robocorp, en de belangrijkste functie is "A browser extension that records user action and scans the page to generate RobotFramework scripts".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Robocorp Recorder

Download Robocorp Recorder-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

                        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                    

Basisinformatie over de Extensie

Naam Robocorp Recorder Robocorp Recorder
ID mcecdbgadanapabbhbejbkmmgcifcdbn
Officiële URL https://chrome.google.com/webstore/detail/mcecdbgadanapabbhbejbkmmgcifcdbn
Beschrijving A browser extension that records user action and scans the page to generate RobotFramework scripts
Bestandsgrootte 203 KB
Aantal Installaties 1,511
Huidige Versie 0.6.2
Laatst Bijgewerkt 2022-04-01
Publicatiedatum 2021-01-08
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Robocorp
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/robocorp/Robotcorder/
Help Pagina-URL https://github.com/robocorp/Robotcorder/issues
Ondersteunde Talen 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"
    ]
}