TestJet

A chrome extension for TestJet Automation

TestJet là gì?

TestJet là một tiện ích mở rộng Chrome được phát triển bởi Testjet, và tính năng chính của nó là "A chrome extension for TestJet Automation".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TestJet

Tải xuống các tệp mở rộng TestJet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TestJet TestJet
ID nfpikmjhnlbdljobpkdfeddgjmkmdcdo
URL Chính Thức https://chromewebstore.google.com/detail/testjet/nfpikmjhnlbdljobpkdfeddgjmkmdcdo
Mô tả A chrome extension for TestJet Automation
Kích Thước Tệp 146 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 2.0.3
Cập Nhật Lần Cuối 2024-02-15
Ngày Phát Hành 2021-06-28
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Testjet
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://testjet.ai/
URL Trang Trợ Giúp https://testjet.ai/contact-us/
URL Trang Chính Sách Bảo Mật https://testjet.ai/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
        ]
    }
}