Reflect
Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.
Reflect là gì?
Reflect là một tiện ích mở rộng Chrome được phát triển bởi Reflect, và tính năng chính của nó là "Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Reflect
Tải xuống các tệp mở rộng Reflect dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reflect |
ID | lnjmloidlbjeecioclhpphfhkpheajbh |
URL Chính Thức | https://chromewebstore.google.com/detail/reflect/lnjmloidlbjeecioclhpphfhkpheajbh |
Mô tả | Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool. |
Kích Thước Tệp | 104 KB |
Số Lần Cài Đặt | 138 |
Phiên Bản Hiện Tại | 1.0.7 |
Cập Nhật Lần Cuối | 2023-12-15 |
Ngày Phát Hành | 2023-09-25 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Reflect |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://reflect.run |
URL Trang Trợ Giúp | https://reflect.run/docs |
URL Trang Chính Sách Bảo Mật | https://reflect.run/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |