TestJet

A chrome extension for TestJet Automation

TestJet란 무엇입니까?

TestJet은(는) Testjet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension for TestJet Automation"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

TestJet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
        ]
    }
}