Reflect
Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.
Reflect क्या है?
Reflect Reflect द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reflect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |