D365-UI-Test-Designer

A browser extension for designing and capturing D365 UI Tests

Τι είναι το D365-UI-Test-Designer;

Το D365-UI-Test-Designer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον florian.kroenert, και η κύρια λειτουργία του είναι "A browser extension for designing and capturing D365 UI Tests".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης D365-UI-Test-Designer

Λήψη αρχείων επέκτασης D365-UI-Test-Designer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    ]
}