Generate Test Case

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

Generate Test Case क्या है?

Generate Test Case smirad91 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Listens to mouse/keyboard events and write commands in plain language into new file"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Generate Test Case एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}