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
Eメール [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"
    }
}