UTAM

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

Hvad er UTAM?

UTAM er en Chrome-udvidelse udviklet af Salesforce, og dens hovedfunktion er "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download UTAM-udvidelses-CRX-fil

Download UTAM-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
Officiel URL https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
Beskrivelse Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
Filstørrelse 342 KB
Antal Installationer 936
Nuværende Version 1.0.1
Senest Opdateret 2024-02-27
Udgivelsesdato 2022-09-02
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Salesforce
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://utam.dev
Hjælpeside-URL https://utam.dev/tools/browser-extension
URL til Fortrolighedspolitik Side http://www.salesforce.com/company/privacy
Understøttede Sprog 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"
    ]
}