UTAM

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

ما هو UTAM؟

UTAM هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة UTAM

قم بتنزيل ملفات الامتداد UTAM بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة https://utam.dev/tools/browser-extension
عنوان صفحة سياسة الخصوصية 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"
    ]
}