UTAM

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

Was ist UTAM?

UTAM ist eine Chrome-Erweiterung, die von Salesforce entwickelt wurde, und ihr Hauptmerkmal ist "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

UTAM-Erweiterungs-CRX-Datei herunterladen

Laden Sie UTAM-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/.                    

Grundlegende Informationen zur Erweiterung

Name UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
Offizielle URL https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
Beschreibung Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
Dateigröße 342 KB
Installationsanzahl 936
Aktuelle Version 1.0.1
Letztes Update 2024-02-27
Veröffentlichungsdatum 2022-09-02
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Salesforce
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://utam.dev
Hilfeseite URL https://utam.dev/tools/browser-extension
URL der Datenschutzrichtlinien-Seite http://www.salesforce.com/company/privacy
Unterstützte Sprachen 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"
    ]
}