D365-UI-Test-Designer

A browser extension for designing and capturing D365 UI Tests

D365-UI-Test-Designer क्या है?

D365-UI-Test-Designer florian.kroenert द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension for designing and capturing D365 UI Tests"।

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

screenshot
screenshot

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

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

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

                        This is an extension for providing a user interface for writing UI Tests for Dynamics 365 Customer Engagement.
It can capture your page actions and assist you in defining actions and assertions for your tests.

The test suite that you create can be exported (and imported again). In addition to this, the extension can create a fully functioning D365-UI-Test UI Test script, which you can use for executing directly in D365-UI-Test.

D365-UI-Test can be found here: https://github.com/XRM-OSS/D365-UI-Test                    

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

नाम D365-UI-Test-Designer D365-UI-Test-Designer
ID lfcoehhlodiaehjepemaogbgadfoipog
आधिकारिक URL https://chromewebstore.google.com/detail/d365-ui-test-designer/lfcoehhlodiaehjepemaogbgadfoipog
विवरण A browser extension for designing and capturing D365 UI Tests
फ़ाइल का आकार 1015 KB
स्थापना संख्या 732
वर्तमान संस्करण 0.9.9
अंतिम अपडेट 2021-02-04
प्रकाशन तिथि 2020-12-31
रेटिंग 5.00/5 कुल 141 रेटिंग्स
डेवलपर florian.kroenert
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/XRM-OSS/D365-UI-Test-Designer
सहायता पृष्ठ URL https://github.com/XRM-OSS/D365-UI-Test-Designer/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "D365-UI-Test-Designer",
    "description": "A browser extension for designing and capturing D365 UI Tests",
    "version": "0.9.9",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/*.dynamics.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "content.js"
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}