Endtest - Codeless Automated Testing

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

What is Endtest - Codeless Automated Testing?

Endtest - Codeless Automated Testing is a Chrome extension developed by https://endtest.io, and its main feature is "Record your Web Tests and add them to your Endtest account.".

Extension Screenshots

screenshot
screenshot

Download Endtest - Codeless Automated Testing Extension CRX File

Download Endtest - Codeless Automated Testing extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Endtest - Codeless Automated Testing Endtest - Codeless Automated Testing
ID jbdgfkeimppmnfemmgfafiomihlibdfa
Official URL https://chromewebstore.google.com/detail/endtest-codeless-automate/jbdgfkeimppmnfemmgfafiomihlibdfa
Description Record your Web Tests and add them to your Endtest account.
File Size 148 KB
Installation Count 2,163
Current Version 0.0.1.4
Last Updated 2023-11-17
Publish Date 2020-06-02
Rating 4.58/5 Total 12 Ratings
Developer https://endtest.io
Email [email protected]
Payment Type free
Privacy Policy Page URL https://endtest.io/privacy
Supported Languages 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"
    }
}