Dakka

Record user actions to create e2e test cases

Dakka क्या है?

Dakka https://dakka.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Record user actions to create e2e test cases"।

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

screenshot

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

crx प्रारूप में Dakka एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Dakka is a development tool which provides a simple and fast solution to generate end-to-end tests by recording events fired on the page. Generated events can be exported or copied to clipboard for further modification and execution. Dakka currently supports frameworks such as - Playwright, Cypress, Puppeteer. 

Dakka provides a visual outline of the events fired on the page so the user can see all actions happening on the page - click, keypress, input, navigation etc. It is possible to manually delete events that the user doesn’t want to include in the exported test script.

One of the differences between writing tests manually and using Dakka is that Dakka dramatically reduces the time spent on selectors and assertions. Dakka identifies and suggests a list of best possible element selectors for the recorded tests. Assertion blocks in Dakka are the validation steps that determine whether the specified step of the test case succeeded or not. helping the user to drag and drop the assertion block to any phase of the test, locate elements and add assertion value. This gives the ability to assert if an element is present on the page, page contains some text or title, current page url equals to particular value.

Dakka is framework agnostic meaning tests can be generated and later exported to one of the suggested formats.                    

एक्सटेंशन की मूल जानकारी

नाम Dakka Dakka
ID gllikifiancbeplnkdnpnmmhhlncghej
आधिकारिक URL https://chromewebstore.google.com/detail/dakka/gllikifiancbeplnkdnpnmmhhlncghej
विवरण Record user actions to create e2e test cases
फ़ाइल का आकार 1.17 MB
स्थापना संख्या 149
वर्तमान संस्करण 0.1.9
अंतिम अपडेट 2023-10-20
प्रकाशन तिथि 2022-02-22
रेटिंग 3.50/5 कुल 2 रेटिंग्स
डेवलपर https://dakka.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.dakka.dev/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dakka",
    "description": "Record user actions to create e2e test cases",
    "version": "0.1.9",
    "manifest_version": 3,
    "devtools_page": ".\/devTools\/devTools.html",
    "background": {
        "service_worker": ".\/background\/background.bundle.js"
    },
    "action": {
        "default_popup": ".\/devTools\/popup.html"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                ".\/contentScript\/contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.js"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}