Reflect
Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.
Was ist Reflect?
Reflect ist eine Chrome-Erweiterung, die von Reflect entwickelt wurde, und ihr Hauptmerkmal ist "Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.".
Erweiterungsscreenshots
Reflect-Erweiterungs-CRX-Datei herunterladen
Laden Sie Reflect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Reflect |
ID | lnjmloidlbjeecioclhpphfhkpheajbh |
Offizielle URL | https://chromewebstore.google.com/detail/reflect/lnjmloidlbjeecioclhpphfhkpheajbh |
Beschreibung | Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool. |
Dateigröße | 104 KB |
Installationsanzahl | 138 |
Aktuelle Version | 1.0.7 |
Letztes Update | 2023-12-15 |
Veröffentlichungsdatum | 2023-09-25 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Reflect |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://reflect.run |
Hilfeseite URL | https://reflect.run/docs |
URL der Datenschutzrichtlinien-Seite | https://reflect.run/privacy-policy |
Unterstützte Sprachen | 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" ] } |