E2E Test Builder

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

Hvad er E2E Test Builder?

E2E Test Builder er en Chrome-udvidelse udviklet af Cuubas, og dens hovedfunktion er "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download E2E Test Builder-udvidelses-CRX-fil

Download E2E Test Builder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Partial alternative to Selenium IDE Firefox extension. 

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

Grundlæggende oplysninger om udvidelsen

Navn E2E Test Builder E2E Test Builder
ID pamfkepooglpdkepmlopejpmcpggaobo
Officiel URL https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo
Beskrivelse An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
Filstørrelse 509 KB
Antal Installationer 306
Nuværende Version 1.4.1
Senest Opdateret 2022-10-10
Udgivelsesdato 2019-01-22
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Cuubas
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/cuubas/e2e-test-builder
Hjælpeside-URL https://github.com/cuubas/e2e-test-builder/issues
Understøttede Sprog 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"
    ]
}