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
电子邮箱 [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
        }
    ]
}