UTAM

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

UTAM क्या है?

UTAM 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 फ़ाइल डाउनलोड करें

crx प्रारूप में UTAM एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}