UTAM

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

Wat is UTAM?

UTAM is een Chrome-extensie ontwikkeld door Salesforce, en de belangrijkste functie is "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie UTAM

Download UTAM-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
Officiële URL https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
Beschrijving Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
Bestandsgrootte 342 KB
Aantal Installaties 936
Huidige Versie 1.0.1
Laatst Bijgewerkt 2024-02-27
Publicatiedatum 2022-09-02
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Salesforce
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://utam.dev
Help Pagina-URL https://utam.dev/tools/browser-extension
URL van de Privacybeleid Pagina http://www.salesforce.com/company/privacy
Ondersteunde Talen 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"
    ]
}