Reflect

Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.

什么是Reflect?

Reflect是由Reflect开发的Chrome扩展程序,该扩展的主要功能是“Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.”。

扩展截图

screenshot
screenshot

下载Reflect扩展crx文件

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

扩展使用说明

                        Unlike conventional automation tools like Selenium or Playwright, with Reflect you don't need to be a developer and don't need to write XPath locators or CSS selectors. Using Generative AI, Reflect automatically translates test scripts from your test case management tools (such as TestRail, Xray, and Zephyr) into automated tests and executes them in an isolated cloud browser. Every test run includes pass/fail status, a video of the execution, and console / network logs.                    

扩展基本信息

名称 Reflect Reflect
ID lnjmloidlbjeecioclhpphfhkpheajbh
官方URL https://chromewebstore.google.com/detail/reflect/lnjmloidlbjeecioclhpphfhkpheajbh
简介 Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.
文件大小 104 KB
安装次数 138
当前版本 1.0.7
更新时间 2023-12-15
上架时间 2023-09-25
评分 5.00/5 共3次评分
开发者 Reflect
电子邮箱 [email protected]
付费类型 free
扩展官网 https://reflect.run
帮助页面URL https://reflect.run/docs
隐私政策页面URL https://reflect.run/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reflect",
    "version": "1.0.7",
    "manifest_version": 3,
    "description": "Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.",
    "minimum_chrome_version": "116",
    "background": {
        "service_worker": "dist\/background.js"
    },
    "action": {
        "default_title": "Click to open panel"
    },
    "icons": {
        "128": "images\/reflect-logo-blue-512.png",
        "16": "images\/reflect-logo-blue-128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "dist\/page.js"
            ]
        }
    ],
    "side_panel": {
        "default_path": "app\/html\/index.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "sidePanel"
    ]
}