E2E Test Builder

An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.

什么是E2E Test Builder?

E2E Test Builder是由Cuubas开发的Chrome扩展程序,该扩展的主要功能是“An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.”。

扩展截图

screenshot
screenshot

下载E2E Test Builder扩展crx文件

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

扩展使用说明

                        Partial alternative to Selenium IDE Firefox extension. 

For more information/issues/feature requests please refer to GitHub repository.                    

扩展基本信息

名称 E2E Test Builder E2E Test Builder
ID pamfkepooglpdkepmlopejpmcpggaobo
官方URL https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo
简介 An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
文件大小 509 KB
安装次数 306
当前版本 1.4.1
更新时间 2022-10-10
上架时间 2019-01-22
评分 5.00/5 共1次评分
开发者 Cuubas
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/cuubas/e2e-test-builder
帮助页面URL https://github.com/cuubas/e2e-test-builder/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "E2E Test Builder",
    "description": "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.",
    "version": "1.4.1",
    "browser_action": {
        "default_icon": "assets\/[email protected]"
    },
    "icons": {
        "16": "assets\/[email protected]",
        "32": "assets\/[email protected]",
        "48": "assets\/[email protected]",
        "128": "assets\/[email protected]",
        "256": "assets\/[email protected]",
        "512": "assets\/[email protected]"
    },
    "background": {
        "scripts": [
            "background\/runtime.js",
            "background\/main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content\/runtime.js",
                "content\/main.js"
            ],
            "all_frames()": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "contextMenus"
    ]
}