testRigor’s Test Case Recorder

Record tests cases in plain English by just recording yourself using the application

testRigor’s Test Case Recorder란 무엇입니까?

testRigor’s Test Case Recorder은(는) testRigor에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record tests cases in plain English by just recording yourself using the application"입니다.

확장 프로그램 스크린샷

screenshot

testRigor’s Test Case Recorder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Record test cases in plain English by just recording yourself using the application.

The test cases are created in https://testrigor.com

Tests are generated in plain-English, so no code to learn and stable. And tests are not reliant on XPath, so they are ultra-stable and a breeze to maintain. testRigor provides a lot of tools to maintain test cases as easily as it is technically possible.

testRigor helps your company test with rigor.

Easy. Fast. Fun.                    

확장 프로그램 기본 정보

이름 testRigor’s Test Case Recorder testRigor’s Test Case Recorder
ID deoegoebpjdcbfmecfjfdihkoncjfmfd
공식 URL https://chromewebstore.google.com/detail/testrigor%E2%80%99s-test-case-rec/deoegoebpjdcbfmecfjfdihkoncjfmfd
설명 Record tests cases in plain English by just recording yourself using the application
파일 크기 22.04 KB
설치 횟수 2,823
현재 버전 1.15
최근 업데이트 2022-11-11
출시 날짜 2020-06-29
평점 5.00/5 총 7 개의 평점
개발자 testRigor
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://testrigor.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "testRigor\u2019s Test Case Recorder",
    "description": "Record tests cases in plain English by just recording yourself using the application",
    "version": "1.15",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "browsingData",
        "*:\/\/cdn.testrigor.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon1.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "stopRecording.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                "https:\/\/app.testrigor.com\/recorder-plugin\/*"
            ],
            "js": [
                "frame-content.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": true
        }
    ]
}