Reflect

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

O que é Reflect?

Reflect é uma extensão do Chrome desenvolvida por Reflect, e sua principal característica é "Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Reflect

Baixe arquivos de extensão Reflect no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Reflect Reflect
ID lnjmloidlbjeecioclhpphfhkpheajbh
URL Oficial https://chromewebstore.google.com/detail/reflect/lnjmloidlbjeecioclhpphfhkpheajbh
Descrição Save time and speed up your QA testing by automatically running test scripts directly from your test case management tool.
Tamanho do Arquivo 104 KB
Contagem de Instalações 138
Versão Atual 1.0.7
Última Atualização 2023-12-15
Data de Publicação 2023-09-25
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Reflect
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://reflect.run
URL da Página de Ajuda https://reflect.run/docs
URL da Página de Política de Privacidade https://reflect.run/privacy-policy
Idiomas Suportados 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"
    ]
}