Custom Xpath

Generate custom xpaths and download as page object files

什麼是Custom Xpath?

Custom Xpath是由praveen060991開發的Chrome擴展程式,該擴展的主要功能是“Generate custom xpaths and download as page object files”。

擴展截圖

screenshot
screenshot
screenshot

下載Custom Xpath擴展crx文件

下載Custom Xpath擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        In Test automation, 30% time taken to manually write custom xpaths. 
This tool helps the users to generate custom values with very few clicks. Then collected objects are stored in an object and written to a user defined file format. Users can download the file and paste it in their framework as page object file. Supported attributes with respect to xpath are ID, Name, Class, Text and Partial Link Text.                    

擴展基本資訊

名稱 Custom Xpath Custom Xpath
ID bcnamjdgkbhebmcjbdeljhobjkoindhf
官方網址 https://chromewebstore.google.com/detail/custom-xpath/bcnamjdgkbhebmcjbdeljhobjkoindhf
簡介 Generate custom xpaths and download as page object files
檔案大小 1.18 MB
安裝次數 162
目前版本 0.0.2
更新時間 2023-01-28
上架時間 2023-01-25
評分 5.00/5 共 2 次評分
開發者 praveen060991
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Xpath",
    "version": "0.0.2",
    "description": "Generate custom xpaths and download as page object files",
    "author": "Praveen Kannan",
    "action": {
        "default_icon": "CX_icon.png"
    },
    "icons": {
        "16": "CX_16.png",
        "48": "CX_48.png",
        "128": "CX_128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "event.js"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "template.html",
                "list.html",
                "icon128.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "_execute_action": {
        "suggested_key": {
            "default": "Alt+c"
        }
    }
}