UTAM

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

Cos'è UTAM?

UTAM è un'estensione di Chrome sviluppata da Salesforce, e la sua funzione principale è "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione UTAM

Scarica i file di estensione UTAM in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome UTAM UTAM
ID llgodnekeleaidcljgfljjechnjdgnli
URL Ufficiale https://chromewebstore.google.com/detail/utam/llgodnekeleaidcljgfljjechnjdgnli
Descrizione Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.
Dimensione del File 342 KB
Conteggio Installazioni 936
Versione Corrente 1.0.1
Ultimo Aggiornamento 2024-02-27
Data di Pubblicazione 2022-09-02
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Salesforce
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://utam.dev
URL della Pagina di Aiuto https://utam.dev/tools/browser-extension
URL della Pagina della Politica sulla Privacy http://www.salesforce.com/company/privacy
Lingue Supportate 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"
    ]
}