Endtest - Codeless Automated Testing

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

什么是Endtest - Codeless Automated Testing?

Endtest - Codeless Automated Testing是由https://endtest.io开发的Chrome扩展程序,该扩展的主要功能是“Record your Web Tests and add them to your Endtest account.”。

扩展截图

screenshot
screenshot

下载Endtest - Codeless Automated Testing扩展crx文件

下载Endtest - Codeless Automated Testing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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/                    

扩展基本信息

名称 Endtest - Codeless Automated Testing Endtest - Codeless Automated Testing
ID jbdgfkeimppmnfemmgfafiomihlibdfa
官方URL https://chromewebstore.google.com/detail/endtest-codeless-automate/jbdgfkeimppmnfemmgfafiomihlibdfa
简介 Record your Web Tests and add them to your Endtest account.
文件大小 148 KB
安装次数 2,163
当前版本 0.0.1.4
更新时间 2023-11-17
上架时间 2020-06-02
评分 4.58/5 共12次评分
开发者 https://endtest.io
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://endtest.io/privacy
支持的语言 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"
    }
}