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ファイルをダウンロード

testRigor’s Test Case Recorder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
        }
    ]
}