E2E Test Builder

An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.

E2E Test Builder란 무엇입니까?

E2E Test Builder은(는) Cuubas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

E2E Test Builder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Partial alternative to Selenium IDE Firefox extension. 

For more information/issues/feature requests please refer to GitHub repository.                    

확장 프로그램 기본 정보

이름 E2E Test Builder E2E Test Builder
ID pamfkepooglpdkepmlopejpmcpggaobo
공식 URL https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo
설명 An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
파일 크기 509 KB
설치 횟수 306
현재 버전 1.4.1
최근 업데이트 2022-10-10
출시 날짜 2019-01-22
평점 5.00/5 총 1 개의 평점
개발자 Cuubas
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/cuubas/e2e-test-builder
도움말 페이지 URL https://github.com/cuubas/e2e-test-builder/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "E2E Test Builder",
    "description": "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.",
    "version": "1.4.1",
    "browser_action": {
        "default_icon": "assets\/[email protected]"
    },
    "icons": {
        "16": "assets\/[email protected]",
        "32": "assets\/[email protected]",
        "48": "assets\/[email protected]",
        "128": "assets\/[email protected]",
        "256": "assets\/[email protected]",
        "512": "assets\/[email protected]"
    },
    "background": {
        "scripts": [
            "background\/runtime.js",
            "background\/main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content\/runtime.js",
                "content\/main.js"
            ],
            "all_frames()": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "contextMenus"
    ]
}