Appway Workspace Recorder
Allows to record interactions with Appway Workspace websites to automatically replay them using Appway's End-to-End Testing.
Τι είναι το Appway Workspace Recorder;
Το Appway Workspace Recorder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Appway AG, και η κύρια λειτουργία του είναι "Allows to record interactions with Appway Workspace websites to automatically replay them using Appway's End-to-End Testing.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Appway Workspace Recorder
Λήψη αρχείων επέκτασης Appway Workspace Recorder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The "Appway Workspace Recorder" extension for Chrome allows to record user interactions on Appway screens - such as entering data, clicking on buttons, or marking of checkboxes - and then download a script file which can be used to automatically replay the interactions later on. The extension is part of Appway's End-to-End Testing offering which enables the testing of Appway Solutions in an easy, efficient, and effective way. Appway Workspace Recorder for Chrome is only one of several artefacts needed to use Appway End-to-End Testing. To learn more about End-to-End Testing, have a look at the official documentation: https://community.appway.com/screen/kb/article/end-to-end-testing-1828070980555 If you have more questions, please reach out to your Appway contact. Privacy Information: the Appway Workspace Recorder extension for Chrome is collecting information on how a user interacts with an Appway screens. This information is collected solely on the machine running the extension and the extension is not sharing any collected information with Appway or another party. Terms and Conditions: the Appway Workspace Recorder extension for Chrome falls under the Terms and Conditions of the Appway End-to-End Testing offering. Reach out to your Appway contact to learn more about them.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Appway Workspace Recorder |
ID | fepmoadmhijcjnocfppgmcahfmdeelga |
Επίσημο URL | https://chromewebstore.google.com/detail/appway-workspace-recorder/fepmoadmhijcjnocfppgmcahfmdeelga |
Περιγραφή | Allows to record interactions with Appway Workspace websites to automatically replay them using Appway's End-to-End Testing. |
Μέγεθος Αρχείου | 5.62 MB |
Αριθμός Εγκαταστάσεων | 19 |
Τρέχουσα Έκδοση | 2.0.0 |
Τελευταία Ενημέρωση | 2020-05-29 |
Ημερομηνία Δημοσίευσης | 2020-05-29 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Appway AG |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://community.appway.com/screen/kb/article/end-to-end-testing-1828070980555 |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Appway Workspace Recorder", "description": "Allows to record interactions with Appway Workspace websites to automatically replay them using Appway's End-to-End Testing.", "version": "2.0.0", "permissions": [ "downloads", "contextMenus", "notifications", "webNavigation", "activeTab", "https:\/\/*\/*", "http:\/\/*\/*" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "web_accessible_resources": [ "js\/jquery\/jquery.min.map" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/jquery\/jquery.min.js", "js\/jszip\/jszip.min.js", "js\/global.js", "js\/background.js" ] }, "content_scripts": [ { "js": [ "js\/jquery\/jquery.min.js", "js\/jszip\/jszip.min.js", "js\/listener\/recorder.js", "js\/listener\/v910.js", "js\/content.js", "js\/dom.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |