testRigor’s Test Case Recorder

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

Was ist testRigor’s Test Case Recorder?

testRigor’s Test Case Recorder ist eine Chrome-Erweiterung, die von testRigor entwickelt wurde, und ihr Hauptmerkmal ist "Record tests cases in plain English by just recording yourself using the application".

Erweiterungsscreenshots

screenshot

testRigor’s Test Case Recorder-Erweiterungs-CRX-Datei herunterladen

Laden Sie testRigor’s Test Case Recorder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name testRigor’s Test Case Recorder testRigor’s Test Case Recorder
ID deoegoebpjdcbfmecfjfdihkoncjfmfd
Offizielle URL https://chromewebstore.google.com/detail/testrigor%E2%80%99s-test-case-rec/deoegoebpjdcbfmecfjfdihkoncjfmfd
Beschreibung Record tests cases in plain English by just recording yourself using the application
Dateigröße 22.04 KB
Installationsanzahl 2,823
Aktuelle Version 1.15
Letztes Update 2022-11-11
Veröffentlichungsdatum 2020-06-29
Bewertung 5.00/5 Insgesamt 7 Bewertungen
Entwickler testRigor
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://testrigor.com
Unterstützte Sprachen 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
        }
    ]
}