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