AutomaticXpathGenerator

This will generate xpaths for elements on the webpage

ما هو AutomaticXpathGenerator؟

AutomaticXpathGenerator هو إضافة Chrome تم تطويرها بواسطة Aamir Mohammed Suhail، والميزة الرئيسية لها هي "This will generate xpaths for elements on the webpage".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة AutomaticXpathGenerator

قم بتنزيل ملفات الامتداد AutomaticXpathGenerator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension is used to generate the xpaths automatically for the web page. It will generate the xpaths for each and every element on the web page and displays it next to the corresponding web elements. User has to just click the xpath to copy and use it in automation script. Also for anyone who doesn't know how to write the xpaths, this extension will be very useful.                    

معلومات أساسية عن التمديد

الاسم AutomaticXpathGenerator AutomaticXpathGenerator
ID amcbnabgjffdhibpmgcnpnmjpfjliikh
عنوان URL الرسمي https://chromewebstore.google.com/detail/automaticxpathgenerator/amcbnabgjffdhibpmgcnpnmjpfjliikh
الوصف This will generate xpaths for elements on the webpage
حجم الملف 21.71 KB
عدد التثبيتات 657
النسخة الحالية 1.2
آخر تحديث 2021-06-21
تاريخ النشر 2021-06-16
تقييم 2.33/5 مجموع تقييمات 6
المطور Aamir Mohammed Suhail
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutomaticXpathGenerator",
    "version": "1.2",
    "description": "This will generate xpaths for elements on the webpage",
    "icons": {
        "128": ".\/icons\/128_g.png",
        "48": ".\/icons\/48_g.png",
        "32": ".\/icons\/32_g.png",
        "16": ".\/icons\/16_g.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "demo.html",
        "default_icon": ".\/icons\/128_g.png"
    }
}