testRigor’s Test Case Recorder

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

O que é testRigor’s Test Case Recorder?

testRigor’s Test Case Recorder é uma extensão do Chrome desenvolvida por testRigor, e sua principal característica é "Record tests cases in plain English by just recording yourself using the application".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão testRigor’s Test Case Recorder

Baixe arquivos de extensão testRigor’s Test Case Recorder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome 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
Descrição Record tests cases in plain English by just recording yourself using the application
Tamanho do Arquivo 22.04 KB
Contagem de Instalações 2,823
Versão Atual 1.15
Última Atualização 2022-11-11
Data de Publicação 2020-06-29
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor testRigor
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://testrigor.com
Idiomas Suportados 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
        }
    ]
}