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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}