Generate Test Case

Listens to mouse/keyboard events and write commands in plain language into new file

O que é Generate Test Case?

Generate Test Case é uma extensão do Chrome desenvolvida por smirad91, e sua principal característica é "Listens to mouse/keyboard events and write commands in plain language into new file".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Generate Test Case

Baixe arquivos de extensão Generate Test Case 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

                        This extension is useful for preparing test requests for automation testers. It generates test cases from working site to html file by clicking or using keybord.

How to use it?
Start by clicking on icon on browser toolbar. HTML file with steps and substeps will open. It is redomended to have browser and HTML file on screen in the same time. As you operate on web site, HTML file is filled. After some actions are executed on web site, modal window with text will open, and you are able to modify it.

Supported actions are:
- click
- double click
- drag
- context menu
- keyboard text

 Notes:
- After mouse or keyboard action modal window will open
- When operating on site, wait 1 second before every new action
- Modal window will contain checkbox for multiple values, when checked you can add multiple text values
- To save generated file you need right click on file and save it. After you save file, you can delete first row with buttons for add and remove steps
 

If you find this extension usefull and you need some modifications, you can contact me on [email protected]                    

Informações Básicas da Extensão

Nome Generate Test Case Generate Test Case
ID bolhpcimlcpfnlkdifinbnegfcgmdodf
URL Oficial https://chromewebstore.google.com/detail/generate-test-case/bolhpcimlcpfnlkdifinbnegfcgmdodf
Descrição Listens to mouse/keyboard events and write commands in plain language into new file
Tamanho do Arquivo 52.62 KB
Contagem de Instalações 95
Versão Atual 1.1
Última Atualização 2020-04-29
Data de Publicação 2020-04-29
Desenvolvedor smirad91
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Generate Test Case",
    "version": "1.1",
    "description": "Listens to mouse\/keyboard events and write commands in plain language into new file",
    "browser_action": {
        "default_popup": "default.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "modal.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "cover16.png",
        "48": "cover48.png",
        "128": "cover128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}