WebDriver Element Locator

Chrome Port of WebDriver Element Locator

ما هو WebDriver Element Locator؟

WebDriver Element Locator هو إضافة Chrome تم تطويرها بواسطة gertdreyer، والميزة الرئيسية لها هي "Chrome Port of WebDriver Element Locator".

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

screenshot

تحميل ملف CRX للإضافة WebDriver Element Locator

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

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

                        To use this extension, simply right click on the web element you wish to locate, select an appropriate locator string and it'll be copied to your clipboard.

This extension will attempt to populate the context menu with usable webdriver XPATH-based findElement commands for the dotnet, python and ruby bindings and Support Locator Library references for the focused web element.

To help prevent buggy tests (and save your time debugging), it will also check the locators for uniqueness, signified by red crosses and green ticks.

In addition, if elements have long, fragile, auto-generated attributes such as id="ctl00_ElementContainer_Inputs_txtForename" it will attempt to locate based on the final (and most significant) part of the value only.

If it struggles to locate via attributes it will also attempt to locate via text value.

After installing the extension a browser restart is recommended to ensure the extension functions as expected.                    

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

الاسم WebDriver Element Locator WebDriver Element Locator
ID cjighmmbcdpbfnhinpakjloafcpmefgl
عنوان URL الرسمي https://chromewebstore.google.com/detail/webdriver-element-locator/cjighmmbcdpbfnhinpakjloafcpmefgl
الوصف Chrome Port of WebDriver Element Locator
حجم الملف 21.57 KB
عدد التثبيتات 1,406
النسخة الحالية 1.5
آخر تحديث 2023-03-16
تاريخ النشر 2021-11-24
تقييم 3.00/5 مجموع تقييمات 2
المطور gertdreyer
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/gertdreyer/WebDriver-Element-Locator/tree/main
عنوان صفحة المساعدة https://github.com/gertdreyer/WebDriver-Element-Locator/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebDriver Element Locator",
    "description": "Chrome Port of WebDriver Element Locator",
    "version": "1.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "32": "webdev-32.png",
        "64": "webdev-64.png"
    }
}