testRigor’s Test Case Recorder

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

¿Qué es testRigor’s Test Case Recorder?

testRigor’s Test Case Recorder es una extensión de Chrome desarrollada por testRigor, y su función principal es "Record tests cases in plain English by just recording yourself using the application".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión testRigor’s Test Case Recorder

Descarga archivos de extensión testRigor’s Test Case Recorder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre testRigor’s Test Case Recorder testRigor’s Test Case Recorder
ID deoegoebpjdcbfmecfjfdihkoncjfmfd
URL Oficial https://chromewebstore.google.com/detail/testrigor%E2%80%99s-test-case-rec/deoegoebpjdcbfmecfjfdihkoncjfmfd
Descripción Record tests cases in plain English by just recording yourself using the application
Tamaño del Archivo 22.04 KB
Cantidad de Instalaciones 2,823
Versión Actual 1.15
Última Actualización 2022-11-11
Fecha de Publicación 2020-06-29
Calificación 5.00/5 Total de 7 Calificaciones
Desarrollador testRigor
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://testrigor.com
Idiomas Soportados 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
        }
    ]
}