TestJet

A chrome extension for TestJet Automation

Τι είναι το TestJet;

Το TestJet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Testjet, και η κύρια λειτουργία του είναι "A chrome extension for TestJet Automation".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης TestJet

Λήψη αρχείων επέκτασης TestJet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα TestJet TestJet
ID nfpikmjhnlbdljobpkdfeddgjmkmdcdo
Επίσημο URL https://chromewebstore.google.com/detail/testjet/nfpikmjhnlbdljobpkdfeddgjmkmdcdo
Περιγραφή A chrome extension for TestJet Automation
Μέγεθος Αρχείου 146 KB
Αριθμός Εγκαταστάσεων 34
Τρέχουσα Έκδοση 2.0.3
Τελευταία Ενημέρωση 2024-02-15
Ημερομηνία Δημοσίευσης 2021-06-28
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Testjet
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://testjet.ai/
Διεύθυνση URL της Σελίδας Βοήθειας https://testjet.ai/contact-us/
URL της Σελίδας Πολιτικής Απορρήτου https://testjet.ai/privacy-policy
Υποστηριζόμενες Γλώσσες 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\/*"
        ]
    }
}