Element Locator

Locate and save web elements and get their xpath/cssSelector code

Element Locator क्या है?

Element Locator yehudak द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Locate and save web elements and get their xpath/cssSelector code"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Element Locator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension allows you to locate and save HTML elements for each page(url),
And shows XPath and CSS-Selector for each saved element.

***Great for web developers or for bulid faster Selenium Tests***
NOTE: After install finisg, open or refresh the page you want to work on.

More Options:
1. Show list of element-attributes
2. Click on element in the elements list will show the chosen element on page
3. Mark (with border) all saved elements
4. Delete one / all saved element in current page(url)                    

एक्सटेंशन की मूल जानकारी

नाम Element Locator Element Locator
ID pldlfgnilfdheajekfphjkjeooignhkc
आधिकारिक URL https://chromewebstore.google.com/detail/element-locator/pldlfgnilfdheajekfphjkjeooignhkc
विवरण Locate and save web elements and get their xpath/cssSelector code
फ़ाइल का आकार 264 KB
स्थापना संख्या 12,340
वर्तमान संस्करण 1.8
अंतिम अपडेट 2019-06-06
प्रकाशन तिथि 2019-06-06
रेटिंग 3.45/5 कुल 22 रेटिंग्स
डेवलपर yehudak
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Element Locator",
    "version": "1.8",
    "description": "Locate and save web elements and get their xpath\/cssSelector code",
    "icons": {
        "16": "images\/elementsLocator16.png",
        "48": "images\/elementsLocator48.png",
        "128": "images\/elementsLocator128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "browser_action": {
        "default_title": "Element Locator",
        "default_popup": "ElementLocator.html"
    },
    "background": {
        "scripts": [
            "node_modules\/idb-keyval\/dist\/idb-keyval-min.js",
            "scripts\/general.js",
            "scripts\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/general.js",
                "scripts\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/general.css"
    ]
}