Robotcorder

A Robot that records user action and scans the page to generate RobotFramework test scripts (beta)

Robotcorder란 무엇입니까?

Robotcorder은(는) wencodes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Robot that records user action and scans the page to generate RobotFramework test scripts (beta)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Robotcorder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Robotcorder generates RobotFramework test script by recording user interactions and scanning the html page. 

It aims to be equivalent of Selenium IDE for RobotFramework browser test automation.

http://bit.ly/robotcorder-blog

Change log 
http://bit.ly/robotcorder-changelog

-- 0.4.0 --
- Add options to customise the locators

-- 0.3.0 --
Add pause & resume feature
Fix Scan bug

-- 0.2.0 --
Add copy to clipboard function
Change spacing to 4
Include google font

-- 0.1.9 --
Add more settings - Sleep 3s, Check Element.
Listen to all the frames including iframes. May be slow for page with many elements.
Reduce permission.                    

확장 프로그램 기본 정보

이름 Robotcorder Robotcorder
ID ifiilbfgcemdapeibjfohnfpfmfblmpd
공식 URL https://chromewebstore.google.com/detail/robotcorder/ifiilbfgcemdapeibjfohnfpfmfblmpd
설명 A Robot that records user action and scans the page to generate RobotFramework test scripts (beta)
파일 크기 210 KB
설치 횟수 5,074
현재 버전 0.4.0
최근 업데이트 2018-09-22
출시 날짜 2018-09-22
평점 4.56/5 총 18 개의 평점
개발자 wencodes
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sohwendy/Robotcorder
도움말 페이지 URL https://github.com/sohwendy/Robotcorder
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Robotcorder",
    "version": "0.4.0",
    "homepage_url": "https:\/\/github.com\/sohwendy\/Robotcorder",
    "description": "A Robot that records user action and scans the page to generate RobotFramework test scripts (beta)",
    "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\/icon-stop.png",
        "default_popup": "src\/popup.html"
    },
    "icons": {
        "16": "assets\/logo-16.png",
        "32": "assets\/logo-32.png",
        "48": "assets\/logo-48.png",
        "128": "assets\/logo-128.png"
    },
    "permissions": [
        "",
        "activeTab",
        "downloads",
        "storage"
    ]
}