Endtest - Codeless Automated Testing

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

Endtest - Codeless Automated Testing là gì?

Endtest - Codeless Automated Testing là một tiện ích mở rộng Chrome được phát triển bởi https://endtest.io, và tính năng chính của nó là "Record your Web Tests and add them to your Endtest account.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Endtest - Codeless Automated Testing

Tải xuống các tệp mở rộng Endtest - Codeless Automated Testing dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Endtest - Codeless Automated Testing Endtest - Codeless Automated Testing
ID jbdgfkeimppmnfemmgfafiomihlibdfa
URL Chính Thức https://chromewebstore.google.com/detail/endtest-codeless-automate/jbdgfkeimppmnfemmgfafiomihlibdfa
Mô tả Record your Web Tests and add them to your Endtest account.
Kích Thước Tệp 148 KB
Số Lần Cài Đặt 2,163
Phiên Bản Hiện Tại 0.0.1.4
Cập Nhật Lần Cuối 2023-11-17
Ngày Phát Hành 2020-06-02
Đánh Giá 4.58/5 Tổng số 12 Đánh Giá
Nhà Phát Triển https://endtest.io
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://endtest.io/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}