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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}