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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    }
}