D365-UI-Test-Designer
A browser extension for designing and capturing D365 UI Tests
Cos'è D365-UI-Test-Designer?
D365-UI-Test-Designer è un'estensione di Chrome sviluppata da florian.kroenert, e la sua funzione principale è "A browser extension for designing and capturing D365 UI Tests".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione D365-UI-Test-Designer
Scarica i file di estensione D365-UI-Test-Designer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | D365-UI-Test-Designer |
ID | lfcoehhlodiaehjepemaogbgadfoipog |
URL Ufficiale | https://chromewebstore.google.com/detail/d365-ui-test-designer/lfcoehhlodiaehjepemaogbgadfoipog |
Descrizione | A browser extension for designing and capturing D365 UI Tests |
Dimensione del File | 1015 KB |
Conteggio Installazioni | 732 |
Versione Corrente | 0.9.9 |
Ultimo Aggiornamento | 2021-02-04 |
Data di Pubblicazione | 2020-12-31 |
Valutazione | 5.00/5 Totale 141 Valutazioni |
Sviluppatore | florian.kroenert |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/XRM-OSS/D365-UI-Test-Designer |
URL della Pagina di Aiuto | https://github.com/XRM-OSS/D365-UI-Test-Designer/issues |
Lingue Supportate | 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" ] } |