Endtest - Codeless Automated Testing

Record your Web Tests and add them to your Endtest account.

Endtest - Codeless Automated Testing란 무엇입니까?

Endtest - Codeless Automated Testing은(는) https://endtest.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record your Web Tests and add them to your Endtest account."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Endtest - Codeless Automated Testing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The Endtest extension allows you to record Web Tests directly in your Chrome browser and add them into your Endtest account.

It can identify elements by ID, Name, XPaths and CSS Selectors. 

The extension can also handle complex scenarios, which involve iframes and multiple tabs.

Tutorial:
https://app.endtest.io/guides/docs/how-to-create-web-tests/                    

확장 프로그램 기본 정보

이름 Endtest - Codeless Automated Testing Endtest - Codeless Automated Testing
ID jbdgfkeimppmnfemmgfafiomihlibdfa
공식 URL https://chromewebstore.google.com/detail/endtest-codeless-automate/jbdgfkeimppmnfemmgfafiomihlibdfa
설명 Record your Web Tests and add them to your Endtest account.
파일 크기 148 KB
설치 횟수 2,163
현재 버전 0.0.1.4
최근 업데이트 2023-11-17
출시 날짜 2020-06-02
평점 4.58/5 총 12 개의 평점
개발자 https://endtest.io
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://endtest.io/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Endtest - Codeless Automated Testing",
    "short_name": "Endtest",
    "author": "Endtest",
    "homepage_url": "https:\/\/endtest.io",
    "description": "Record your Web Tests and add them to your Endtest account.",
    "version": "0.0.1.4",
    "icons": {
        "16": "icon_new.png",
        "48": "icon_new.png",
        "128": "icon_new.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "cookies",
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "match_origin_as_fallback": true,
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js",
                "popup.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon_new.png",
        "default_popup": "popup.html"
    }
}