Endtest - Codeless Automated Testing

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

Qu'est-ce que Endtest - Codeless Automated Testing ?

Endtest - Codeless Automated Testing est une extension Chrome développée par https://endtest.io, et sa fonction principale est "Record your Web Tests and add them to your Endtest account.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Endtest - Codeless Automated Testing

Téléchargez les fichiers d'extension Endtest - Codeless Automated Testing au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Endtest - Codeless Automated Testing Endtest - Codeless Automated Testing
ID jbdgfkeimppmnfemmgfafiomihlibdfa
URL Officiel https://chromewebstore.google.com/detail/endtest-codeless-automate/jbdgfkeimppmnfemmgfafiomihlibdfa
Description Record your Web Tests and add them to your Endtest account.
Taille du Fichier 148 KB
Nombre d'Installations 2,163
Version Actuelle 0.0.1.4
Dernière Mise à Jour 2023-11-17
Date de Publication 2020-06-02
Évaluation 4.58/5 Total 12 Évaluations
Développeur https://endtest.io
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://endtest.io/privacy
Langues Prises en Charge 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"
    }
}