Robocorp Recorder

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

Qu'est-ce que Robocorp Recorder ?

Robocorp Recorder est une extension Chrome développée par Robocorp, et sa fonction principale est "A browser extension that records user action and scans the page to generate RobotFramework scripts".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Robocorp Recorder

Téléchargez les fichiers d'extension Robocorp Recorder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Robocorp Recorder Robocorp Recorder
ID mcecdbgadanapabbhbejbkmmgcifcdbn
URL Officiel https://chrome.google.com/webstore/detail/mcecdbgadanapabbhbejbkmmgcifcdbn
Description A browser extension that records user action and scans the page to generate RobotFramework scripts
Taille du Fichier 203 KB
Nombre d'Installations 1,511
Version Actuelle 0.6.2
Dernière Mise à Jour 2022-04-01
Date de Publication 2021-01-08
Évaluation 5.00/5 Total 2 Évaluations
Développeur Robocorp
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/robocorp/Robotcorder/
URL de la Page d'Aide https://github.com/robocorp/Robotcorder/issues
Langues Prises en Charge 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"
    ]
}