testRigor’s Test Case Recorder

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

Qu'est-ce que testRigor’s Test Case Recorder ?

testRigor’s Test Case Recorder est une extension Chrome développée par testRigor, et sa fonction principale est "Record tests cases in plain English by just recording yourself using the application".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension testRigor’s Test Case Recorder

Téléchargez les fichiers d'extension testRigor’s Test Case Recorder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom testRigor’s Test Case Recorder testRigor’s Test Case Recorder
ID deoegoebpjdcbfmecfjfdihkoncjfmfd
URL Officiel https://chromewebstore.google.com/detail/testrigor%E2%80%99s-test-case-rec/deoegoebpjdcbfmecfjfdihkoncjfmfd
Description Record tests cases in plain English by just recording yourself using the application
Taille du Fichier 22.04 KB
Nombre d'Installations 2,823
Version Actuelle 1.15
Dernière Mise à Jour 2022-11-11
Date de Publication 2020-06-29
Évaluation 5.00/5 Total 7 Évaluations
Développeur testRigor
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://testrigor.com
Langues Prises en Charge 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
        }
    ]
}