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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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