UTAM

Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.

Τι είναι το UTAM;

Το UTAM είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Salesforce, και η κύρια λειτουργία του είναι "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης UTAM

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

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

                        The UTAM browser extension enables inspection of a page to identify known UTAM Page Objects that can be used for automated testing. It also enables generation of page objects for parts of the page that don't have one already.

For help getting started, tutorials, documentation and more check out our website at https://utam.dev/.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
Επίσημο URL https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
Περιγραφή Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
Μέγεθος Αρχείου 342 KB
Αριθμός Εγκαταστάσεων 936
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2024-02-27
Ημερομηνία Δημοσίευσης 2022-09-02
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Salesforce
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://utam.dev
Διεύθυνση URL της Σελίδας Βοήθειας https://utam.dev/tools/browser-extension
URL της Σελίδας Πολιτικής Απορρήτου http://www.salesforce.com/company/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "UTAM",
    "version": "1.0.1",
    "description": "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.",
    "author": "Salesforce",
    "devtools_page": "devtools\/devtools.html",
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "icons": {
        "512": "img\/browser-plugin.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "common\/ErrorCodes.js",
                "common\/Messages.js",
                "common\/Settings.js",
                "content\/content_main.js",
                "content\/ElementFinder.js",
                "content\/Highlighter.js",
                "content\/MemberNodeDescriptor.js",
                "content\/PageObjectDatabase.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "storage",
        "tabs"
    ]
}