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
官方網址 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"
    }
}