TestJet

A chrome extension for TestJet Automation

¿Qué es TestJet?

TestJet es una extensión de Chrome desarrollada por Testjet, y su función principal es "A chrome extension for TestJet Automation".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión TestJet

Descarga archivos de extensión TestJet 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

                        Testjet is an end-to-end testing automation platform that is currently in development. We are creating an intuitive application that will allow users to create test cases without writing a single line of code. We achieve this through our browser extension that we have created which allows testers to record events and behaviors of users in their browser and translate them in to simple executable tests. Testers can also add custom validations to their test cases accordingly on each step of the test case to validate if a element such as "Text" is visible or if the color of the button is appropriate etc. The goal of TestJet is to reduce test authoring time and help create stable test with minimum maintenance.                    

Información Básica de la Extensión

Nombre TestJet TestJet
ID nfpikmjhnlbdljobpkdfeddgjmkmdcdo
URL Oficial https://chromewebstore.google.com/detail/testjet/nfpikmjhnlbdljobpkdfeddgjmkmdcdo
Descripción A chrome extension for TestJet Automation
Tamaño del Archivo 146 KB
Cantidad de Instalaciones 34
Versión Actual 2.0.3
Última Actualización 2024-02-15
Fecha de Publicación 2021-06-28
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Testjet
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://testjet.ai/
URL de la Página de Ayuda https://testjet.ai/contact-us/
URL de la Página de Política de Privacidad https://testjet.ai/privacy-policy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension for TestJet Automation",
    "version": "2.0.3",
    "manifest_version": 3,
    "name": "TestJet",
    "permissions": [
        "tabs",
        "unlimitedStorage",
        "storage",
        "debugger",
        "cookies",
        "background",
        "activeTab",
        "webNavigation"
    ],
    "host_permissions": [
        "",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "all_frames": true,
            "js": [
                "browser-polyfill.js",
                "setupScript.bundle.js",
                "contentScript.bundle.js",
                "record.bundle.js",
                "play.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-34.png",
                "indicator.html",
                "indicator.script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ]
        }
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "http:\/\/localhost\/*",
            "http:\/\/localhost:3000\/*",
            "https:\/\/localhost\/*",
            "https:\/\/*.testjet.ai\/*"
        ]
    }
}