Endtest - Codeless Automated Testing

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

Co je Endtest - Codeless Automated Testing?

Endtest - Codeless Automated Testing je rozšíření Chrome vyvinuté https://endtest.io, a jeho hlavní funkcí je „Record your Web Tests and add them to your Endtest account.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Endtest - Codeless Automated Testing

Stáhněte si soubory rozšíření Endtest - Codeless Automated Testing ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Endtest - Codeless Automated Testing Endtest - Codeless Automated Testing
ID jbdgfkeimppmnfemmgfafiomihlibdfa
Oficiální URL https://chromewebstore.google.com/detail/endtest-codeless-automate/jbdgfkeimppmnfemmgfafiomihlibdfa
Popis Record your Web Tests and add them to your Endtest account.
Velikost souboru 148 KB
Počet instalací 2,163
Aktuální Verze 0.0.1.4
Poslední Aktualizace 2023-11-17
Datum Vydání 2020-06-02
Hodnocení 4.58/5 Celkem 12 Hodnocení
Vývojář https://endtest.io
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://endtest.io/privacy
Podporované Jazyky 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"
    }
}