TestJet

A chrome extension for TestJet Automation

TestJetとは何ですか?

TestJetはTestjetによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension for TestJet Automation」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

TestJet拡張機能のCRXファイルをダウンロード

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
Eメール [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\/*"
        ]
    }
}