Custom Xpath

Generate custom xpaths and download as page object files

Was ist Custom Xpath?

Custom Xpath ist eine Chrome-Erweiterung, die von praveen060991 entwickelt wurde, und ihr Hauptmerkmal ist "Generate custom xpaths and download as page object files".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Custom Xpath-Erweiterungs-CRX-Datei herunterladen

Laden Sie Custom Xpath-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Custom Xpath Custom Xpath
ID bcnamjdgkbhebmcjbdeljhobjkoindhf
Offizielle URL https://chromewebstore.google.com/detail/custom-xpath/bcnamjdgkbhebmcjbdeljhobjkoindhf
Beschreibung Generate custom xpaths and download as page object files
Dateigröße 1.18 MB
Installationsanzahl 162
Aktuelle Version 0.0.2
Letztes Update 2023-01-28
Veröffentlichungsdatum 2023-01-25
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler praveen060991
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    }
}