Reflect

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

Qu'est-ce que Reflect ?

Reflect est une extension Chrome développée par Reflect, et sa fonction principale est "Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Reflect

Téléchargez les fichiers d'extension Reflect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Reflect Reflect
ID lnjmloidlbjeecioclhpphfhkpheajbh
URL Officiel https://chromewebstore.google.com/detail/reflect/lnjmloidlbjeecioclhpphfhkpheajbh
Description Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.
Taille du Fichier 104 KB
Nombre d'Installations 138
Version Actuelle 1.0.7
Dernière Mise à Jour 2023-12-15
Date de Publication 2023-09-25
Évaluation 5.00/5 Total 3 Évaluations
Développeur Reflect
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://reflect.run
URL de la Page d'Aide https://reflect.run/docs
URL de la Page de Politique de Confidentialité https://reflect.run/privacy-policy
Langues Prises en Charge 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"
    ]
}