D365-UI-Test-Designer
A browser extension for designing and capturing D365 UI Tests
Qu'est-ce que D365-UI-Test-Designer ?
D365-UI-Test-Designer est une extension Chrome développée par florian.kroenert, et sa fonction principale est "A browser extension for designing and capturing D365 UI Tests".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension D365-UI-Test-Designer
Téléchargez les fichiers d'extension D365-UI-Test-Designer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | D365-UI-Test-Designer |
ID | lfcoehhlodiaehjepemaogbgadfoipog |
URL Officiel | https://chromewebstore.google.com/detail/d365-ui-test-designer/lfcoehhlodiaehjepemaogbgadfoipog |
Description | A browser extension for designing and capturing D365 UI Tests |
Taille du Fichier | 1015 KB |
Nombre d'Installations | 732 |
Version Actuelle | 0.9.9 |
Dernière Mise à Jour | 2021-02-04 |
Date de Publication | 2020-12-31 |
Évaluation | 5.00/5 Total 141 Évaluations |
Développeur | florian.kroenert |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/XRM-OSS/D365-UI-Test-Designer |
URL de la Page d'Aide | https://github.com/XRM-OSS/D365-UI-Test-Designer/issues |
Langues Prises en Charge | 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" ] } |