Generate Test Case

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

Generate Test Case란 무엇입니까?

Generate Test Case은(는) smirad91에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Listens to mouse/keyboard events and write commands in plain language into new file"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Generate Test Case 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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]                    

확장 프로그램 기본 정보

이름 Generate Test Case Generate Test Case
ID bolhpcimlcpfnlkdifinbnegfcgmdodf
공식 URL https://chromewebstore.google.com/detail/generate-test-case/bolhpcimlcpfnlkdifinbnegfcgmdodf
설명 Listens to mouse/keyboard events and write commands in plain language into new file
파일 크기 52.62 KB
설치 횟수 95
현재 버전 1.1
최근 업데이트 2020-04-29
출시 날짜 2020-04-29
개발자 smirad91
결제 유형 free
지원되는 언어 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"
    ]
}