Endtest - Codeless Automated Testing

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

Cos'è Endtest - Codeless Automated Testing?

Endtest - Codeless Automated Testing è un'estensione di Chrome sviluppata da https://endtest.io, e la sua funzione principale è "Record your Web Tests and add them to your Endtest account.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Endtest - Codeless Automated Testing

Scarica i file di estensione Endtest - Codeless Automated Testing in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Endtest - Codeless Automated Testing Endtest - Codeless Automated Testing
ID jbdgfkeimppmnfemmgfafiomihlibdfa
URL Ufficiale https://chromewebstore.google.com/detail/endtest-codeless-automate/jbdgfkeimppmnfemmgfafiomihlibdfa
Descrizione Record your Web Tests and add them to your Endtest account.
Dimensione del File 148 KB
Conteggio Installazioni 2,163
Versione Corrente 0.0.1.4
Ultimo Aggiornamento 2023-11-17
Data di Pubblicazione 2020-06-02
Valutazione 4.58/5 Totale 12 Valutazioni
Sviluppatore https://endtest.io
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://endtest.io/privacy
Lingue Supportate 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"
    }
}